export declare type valueSelect = { value: string; label: string; }; export declare type SelectGroupSideT = { values: valueSelect[]; id: string; optionCustom?: any; selectValue: any; }; export declare const SelectGroupSide: ({ ...props }: SelectGroupSideT) => any;