import { RecraftV3TextToImageInput } from '@fal-ai/client/endpoints';
export declare function getImageDimensions(id: string): {
    width: number;
    height: number;
};
export type StyleId = Extract<RecraftV3TextToImageInput['style'], string>;
export declare const STYLES_IMAGE: {
    id: StyleId;
    label: string;
}[];
export declare const STYLE_IMAGE_DEFAULT: {
    id: StyleId;
    label: string;
};
export declare const STYLES_VECTOR: {
    id: StyleId;
    label: string;
}[];
export declare const STYLE_VECTOR_DEFAULT: {
    id: StyleId;
    label: string;
};
export declare function getStyleThumbnail(id: StyleId, baseURL: string): string | undefined;
