declare const _default: {
    definition: {
        name: string;
        description: string;
        inputSchema: {
            type: string;
            properties: {
                page_name: {
                    type: string;
                    description: string;
                };
                prompt: {
                    type: string;
                    description: string;
                };
                style: {
                    type: string;
                    description: string;
                    default: string;
                };
                custom_animation: {
                    type: string;
                    description: string;
                    properties: {
                        title: {
                            type: string;
                        };
                        scene_description: {
                            type: string;
                        };
                        animation_beats: {
                            type: string;
                            items: {
                                type: string;
                                properties: {
                                    timeRange: {
                                        type: string;
                                    };
                                    description: {
                                        type: string;
                                    };
                                };
                            };
                        };
                        style_tags: {
                            type: string;
                        };
                    };
                };
                references: {
                    type: string;
                    description: string;
                    items: {
                        type: string;
                    };
                    default: never[];
                };
            };
            required: string[];
        };
    };
    handler: {
        'tools/call': (request: any) => Promise<{
            content: {
                type: string;
                text: string;
            }[];
        } | null>;
    };
};
export default _default;
//# sourceMappingURL=create-notion-banner.d.ts.map