import type { ExportableVariable } from './exportable-variable';
import type { TeamResourceOwner } from './resource-owner';
export interface ExportableProject {
    id: string;
    name: string;
    icon: {
        type: 'emoji' | 'icon';
        value: string;
    } | null;
    description: string | null;
    type: 'team';
    owner: TeamResourceOwner;
    variableStubs?: ExportableVariable[];
}
export type ExportableProjectWithFileName = ExportableProject & {
    filename: string;
};
