import React, { FC } from 'react';
export interface ConfigConsumerProps {
    getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => string;
    autoInsertSpaceInButton?: boolean;
}
export interface ProviderProps {
    prefixCls?: string;
    autoInsertSpaceInButton?: boolean;
}
export declare const Context: React.Context<ConfigConsumerProps>;
export declare const ConfigConsumer: React.Consumer<ConfigConsumerProps>;
declare const Provider: FC<ProviderProps>;
export default Provider;
