import React from "react"; export declare type DirectionType = "ltr" | "rtl" | undefined; export declare type SizeType = "small" | "normal" | "large" | undefined; export interface ConfigConsumerProps { getPrefixCls: (suffixCls?: string) => string; direction?: DirectionType; space?: { size?: SizeType | number; }; } export declare const defaultGetPrefixCls: (suffixCls?: string) => string; export declare const ConfigContext: React.Context;