import React from 'react';
export interface ConfigConsumerProps {
getPrefixCls: (suffixCls: string, customizePrefixCls?: string) => string;
}
export declare const ConfigContext: React.Context<ConfigConsumerProps>;
export declare const ConfigConsumer: React.Consumer<ConfigConsumerProps>;