import { CreateComponentThemeParams } from '../schemas.js';
export declare function handleCreateComponentTheme(params: CreateComponentThemeParams): Promise<{
    content: {
        type: "text";
        text: string;
    }[];
    isError: boolean;
} | {
    content: {
        type: "text";
        text: string;
    }[];
    isError?: undefined;
}>;
