type childrenItem = {
    [x: string]: any;
};
export type ConfigProps = {
    label: string;
    children: childrenItem[];
    direction: string;
};
export {};
