import { CreateThemeParams } from '../schemas.js';
export declare function handleCreateTheme(params: CreateThemeParams): Promise<{
    content: {
        type: "text";
        text: string;
    }[];
}>;
