/// import 'antd/dist/antd.css'; export declare type valueSelect = { value: string; label: string; }; export declare type selectStandardT = { values: valueSelect[]; id: string; parentKeySection?: unknown; }; export declare const SelectStandard: ({ ...props }: selectStandardT) => JSX.Element;