File size: 407 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import type { EdgeImageResponse } from '../index.edge';
import { FigmaImageResponseProps } from '../types';
type InternalFigmaImageResponseProps = FigmaImageResponseProps & {
Response: EdgeImageResponse;
};
export declare const FigmaImageResponse: ({ url, template, fonts, imageResponseOptions, Response, }: InternalFigmaImageResponseProps) => Promise<import("../index.edge").ImageResponse>;
export {};
|