import React from 'react'; import { FlowindSize } from '../../../styles'; export interface SelectRightSectionProps { shouldClear: boolean; clearButtonProps?: Omit, 'type' | 'color'>; onClear?: () => void; size: FlowindSize; error?: any; disabled?: boolean; } export declare function SelectRightSection({ shouldClear, clearButtonProps, onClear, size, error, }: SelectRightSectionProps): React.JSX.Element; export declare namespace SelectRightSection { var displayName: string; }