export declare const propsScheme: {
    limit: {
        type: NumberConstructor;
        intro: string;
    };
    row: {
        type: ObjectConstructor;
        intro: string;
        required: boolean;
    };
    buttonComp: {
        type: BooleanConstructor;
        intro: string;
        default: string;
        options: string[];
    };
};
export declare const eventsScheme: {
    click: {
        cbVar: string;
    };
};
export declare const slotsScheme: {
    default: {
        cbVar: string;
    };
};
export declare const componentScheme: {
    propsScheme: {
        limit: {
            type: NumberConstructor;
            intro: string;
        };
        row: {
            type: ObjectConstructor;
            intro: string;
            required: boolean;
        };
        buttonComp: {
            type: BooleanConstructor;
            intro: string;
            default: string;
            options: string[];
        };
    };
    slotsScheme: {
        default: {
            cbVar: string;
        };
    };
    eventsScheme: {
        click: {
            cbVar: string;
        };
    };
    name: string;
};
