import * as React from 'react'; type IColorBar = { onColorUpdate: (color: string) => void; onColorClear: () => void; value?: string; }; export declare function ColorBar({ onColorUpdate, onColorClear, value }: IColorBar): React.JSX.Element; export declare function ColorButton(): React.JSX.Element; export {}; //# sourceMappingURL=ColorBar.d.ts.map