export default function getProjects({ account_id, limit, }: {
    account_id: string;
    limit?: number;
}): Promise<{
    project_id: string;
    title?: string;
    description?: string;
}[]>;
