import { type FC } from 'react'; import { CustomGradient } from '~/types'; interface GradientSelectProps { gradients: CustomGradient[]; value: string; onChange: (id: string) => void; defaultGradients: CustomGradient[]; onAction: (type: 'delete' | 'add', data?: any) => void; readonly: boolean; } export declare const GradientSelect: FC; export {}; //# sourceMappingURL=GradientSelect.d.ts.map