export interface StripoFolder {
    id: number;
    name: string;
    type: string;
    treeRef: string;
    children: StripoFolder[] | null;
}
export interface StripoEmail {
    emailId: number;
    name: string;
    editorUrl: string;
    previewUrl: string;
    updatedTime: string;
    hasAmp: boolean;
    preheader: string | null;
    title: string;
    previewImage: string;
}
export interface StripoRawEmail {
    id: number;
    html: string;
    css?: string;
}
