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