import CreativeEditorSDK from '@cesdk/cesdk-js';
import { FalClient } from './createFalClient';
type CustomImageSize = {
    width: number;
    height: number;
};
export declare function isCustomImageSize(imageSize: any): imageSize is CustomImageSize;
export declare function uploadImageInputToFalIfNeeded(client: FalClient, imageUrl?: string, cesdk?: CreativeEditorSDK): Promise<string | undefined>;
export declare function uploadImageArrayToFalIfNeeded(client: FalClient, imageUrls?: string[], cesdk?: CreativeEditorSDK): Promise<string[] | undefined>;
export {};
