interface OptionTypeBase { [key: string]: any; } export interface OptionType extends OptionTypeBase { label: string; value: string; } export interface Props { allOptions: string[]; placeholderLabel: string; disable?: boolean; selectedValue?: string; showTooltip?: boolean; onSelectedValueChanged: (selectedValue: OptionType) => void; valueToId: (value: string) => string; valueToLabel: (value: string) => string; } declare const TransactionDetailFieldsPicker: ({ allOptions, selectedValue, onSelectedValueChanged, valueToLabel, valueToId, disable, placeholderLabel, showTooltip, }: Props) => import("react/jsx-runtime").JSX.Element; export default TransactionDetailFieldsPicker;