import React from 'react'; import { MantineTheme } from '@asuikit/styles'; import { SelectRightSectionProps } from './SelectRightSection'; interface GetRightSectionProps extends SelectRightSectionProps { rightSection?: React.ReactNode; rightSectionWidth?: string | number; styles: Record; theme: MantineTheme; readOnly: boolean; } export declare function getSelectRightSectionProps({ styles, rightSection, rightSectionWidth, theme, ...props }: GetRightSectionProps): { rightSection: string | number | true | React.ReactElement> | Iterable | React.ReactPortal; rightSectionWidth: string | number; styles: Record; } | { rightSection: React.JSX.Element; styles: any; rightSectionWidth?: undefined; }; export {}; //# sourceMappingURL=get-select-right-section-props.d.ts.map