export type Style = {
    id: string;
    clientId: string;
    name: string;
    type: string;
    config: Record<string, any>;
    createdAt?: Date;
    updatedAt?: Date;
};
