import { FormikOptions, EventEmitter } from '../Select/Select.types'; declare type StyleSelect = { width?: string; minWidthMenu?: string; height?: string; }; export interface DuplicateButtonProps { label: string; validateLabel?: string; cancelLabel?: string; isLoadingValidate?: boolean; disabled?: boolean; selection?: FormikOptions; eventEmitter: EventEmitter; styleSelect: StyleSelect; placeholder?: string; } export {};