import { ComponentProps } from 'react'; import { Input } from '../input'; export interface ColorPickerInputProps extends ComponentProps { /** * Render a copy-to-clipboard button inside the input's trailing slot. * The button copies the current formatted color string in the active mode. * @default false */ copyable?: boolean; } export declare const ColorPickerInput: { ({ copyable, trailingIcon, ...props }: ColorPickerInputProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; //# sourceMappingURL=color-picker-input.d.ts.map