interface Options {
    account_id: string;
    title?: string;
    description?: string;
    image?: string;
    license?: string;
    public_path_id?: string;
}
export default function createProject({ account_id, title, description, image, license, public_path_id, }: Options): Promise<any>;
export {};
