export type TemplateChannelType = 'chat' | 'notebook' | 'gallery';
export interface TemplateChannel {
    type: TemplateChannelType;
    title: string;
    description: string;
}
export interface GroupTemplate {
    id: string;
    title: string;
    subtitle: string;
    description: string;
    icon: string;
    channels: TemplateChannel[];
}
export declare const groupTemplates: readonly [{
    readonly id: "book-club";
    readonly title: "Book Club";
    readonly subtitle: "Discuss your latest reads";
    readonly description: "A group for discussing books and literature";
    readonly icon: "📚";
    readonly channels: readonly [{
        readonly type: "chat";
        readonly title: "Book chat";
        readonly description: "Discuss books and literature";
    }, {
        readonly type: "gallery";
        readonly title: "Now reading";
        readonly description: "Share what you're currently reading";
    }, {
        readonly type: "notebook";
        readonly title: "Reviews";
        readonly description: "Write and share book reviews";
    }];
}, {
    readonly id: "cooking-club";
    readonly title: "Cooking Club";
    readonly subtitle: "Share recipes and cooking tips";
    readonly description: "A group for food lovers and home cooks";
    readonly icon: "🍳";
    readonly channels: readonly [{
        readonly type: "chat";
        readonly title: "Food talk";
        readonly description: "Chat about cooking and food";
    }, {
        readonly type: "gallery";
        readonly title: "Meal pics";
        readonly description: "Share photos of your culinary creations";
    }, {
        readonly type: "notebook";
        readonly title: "Recipes";
        readonly description: "Collect and share your favorite recipes";
    }];
}, {
    readonly id: "music";
    readonly title: "Music";
    readonly subtitle: "Share and discover new tunes";
    readonly description: "A group for music lovers and audiophiles";
    readonly icon: "🎵";
    readonly channels: readonly [{
        readonly type: "chat";
        readonly title: "Tune talk";
        readonly description: "Discuss music and artists";
    }, {
        readonly type: "gallery";
        readonly title: "Now listening";
        readonly description: "Share what you're listening to";
    }, {
        readonly type: "notebook";
        readonly title: "Playlists";
        readonly description: "Curate and share playlists";
    }];
}, {
    readonly id: "running-club";
    readonly title: "Running Club";
    readonly subtitle: "Track your runs and stay motivated";
    readonly description: "A group for runners of all levels";
    readonly icon: "🏃";
    readonly channels: readonly [{
        readonly type: "chat";
        readonly title: "Run chat";
        readonly description: "Chat about running and training";
    }, {
        readonly type: "gallery";
        readonly title: "Run pics";
        readonly description: "Share photos from your runs";
    }, {
        readonly type: "notebook";
        readonly title: "Goals";
        readonly description: "Track your running goals and progress";
    }];
}, {
    readonly id: "cinema-club";
    readonly title: "Cinema Club";
    readonly subtitle: "Discuss and review films";
    readonly description: "A group for movie enthusiasts and film buffs";
    readonly icon: "🎬";
    readonly channels: readonly [{
        readonly type: "chat";
        readonly title: "Film chat";
        readonly description: "Discuss movies and cinema";
    }, {
        readonly type: "gallery";
        readonly title: "Now watching";
        readonly description: "Share what you're currently watching";
    }, {
        readonly type: "notebook";
        readonly title: "Reviews";
        readonly description: "Write and share film reviews";
    }];
}, {
    readonly id: "garden-club";
    readonly title: "Garden Club";
    readonly subtitle: "Grow together";
    readonly description: "A group for gardeners and plant enthusiasts";
    readonly icon: "🌱";
    readonly channels: readonly [{
        readonly type: "chat";
        readonly title: "Garden talk";
        readonly description: "Chat about gardening and plants";
    }, {
        readonly type: "gallery";
        readonly title: "Plant pics";
        readonly description: "Share photos of your garden and plants";
    }, {
        readonly type: "notebook";
        readonly title: "Tips, plans and schedules";
        readonly description: "Share gardening tips and track your plans";
    }];
}];
export declare const basicGroupTemplate: {
    readonly id: "basic-group";
    readonly title: "Basic Group";
    readonly subtitle: "A basic group with essential channels";
    readonly description: "A basic group with essential channels";
    readonly icon: "✨";
    readonly channels: readonly [{
        readonly type: "chat";
        readonly title: "Chat";
        readonly description: "General chat";
    }, {
        readonly type: "gallery";
        readonly title: "Gallery";
        readonly description: "Share images";
    }, {
        readonly type: "notebook";
        readonly title: "Notebook";
        readonly description: "Share notes";
    }];
};
export type GroupTemplateId = (typeof groupTemplates)[number]['id'] | typeof basicGroupTemplate.id;
export declare const groupTemplatesById: Record<GroupTemplateId, GroupTemplate>;
//# sourceMappingURL=groupTemplates.d.ts.map