export interface CustomStyle {
    id: number;
    prompt: string;
    style: number;
    image: string;
}
export interface ApiStyle {
    id: number;
    name: string;
    is_premium: boolean;
    photo_url: string;
}
export interface CustomStyles {
    [key: string]: CustomStyle;
}
export interface StyleMap {
    [key: string]: number;
}
export interface CustomIdMap {
    [key: number]: string;
}
