import React from 'react'; import { FlowindTheme } from '../../../styles'; import { SelectRightSectionProps } from './select-right-section'; interface GetRightSectionProps extends SelectRightSectionProps { suffix?: React.ReactNode; suffixWidth?: string | number; styles: Record; theme: FlowindTheme; readOnly: boolean; } export declare function getSelectRightSectionProps({ styles, suffix, suffixWidth, theme, ...props }: GetRightSectionProps): { suffix: string | number | true | React.ReactElement> | Iterable | React.ReactPortal; suffixWidth: string | number; styles: Record; } | { suffix: React.JSX.Element; styles: any; suffixWidth?: undefined; }; export {};