import '../skhemata-blog.js';
import { ArgTypes, Story } from './argTypes';
declare const _default: {
    title: string;
    component: string;
    argTypes: {
        apiWordpress: {
            name: string;
            control: string;
            table: {
                category: string;
                type: {
                    summary: string;
                    detail: string;
                };
            };
            description: string;
        };
        blogPagePath: {
            name: string;
            table: {
                category: string;
                type: {
                    summary: string;
                };
            };
            description: string;
        };
        navigate: {
            name: string;
            table: {
                category: string;
                type: {
                    summary: string;
                    detail: string;
                };
            };
            description: string;
        };
        skhemataBlogCategoriesBackgroundColor: {
            name: string;
            control: string;
            description: string;
            defaultValue: string;
            table: {
                category: string;
                type: string;
            };
        };
        skhemataBlogCategoriesTextColor: {
            name: string;
            control: string;
            description: string;
            defaultValue: string;
            table: {
                category: string;
                type: string;
            };
        };
    };
};
export default _default;
interface SkhemataBlogCategoriesArgTypes extends ArgTypes {
    skhemataBlogCategoriesTextColor: string;
    skhemataBlogCategoriesBackgroundColor: string;
}
export declare const Example: Story<SkhemataBlogCategoriesArgTypes>;
