import React from 'react'; import { type UnstableColorFieldProps } from '../../../unstable'; import { type CustomComponentProps } from '../../../styles'; import type { Gradient } from './types'; import './GradientBox.types'; export interface GradientBoxProps extends CustomComponentProps { value?: Gradient; onChange: (value: Gradient) => void; labels?: { angle?: string; bottom?: string; center?: string; color?: string; flip?: string; left?: string; linear?: string; position?: string; radial?: string; right?: string; stop?: string; top?: string; type?: string; }; slotProps?: { colorField?: UnstableColorFieldProps; }; } declare const slots: { root: { slot: "root"; name: "MuiGradientBox"; }; }; export type GradientBoxSlots = keyof typeof slots; declare const GradientBox: React.FC; export default GradientBox;