import type { ColorStop } from '../../src/types';
interface UseCaseProps {
    palette: ColorStop[];
    title: string;
    ColorPicker?: any;
    link?: string;
    direction?: 'horizontal' | 'vertical';
    colorPickerMode?: 'static' | 'popover';
}
declare const UseCase: ({ palette, ColorPicker, link, title, colorPickerMode, direction }: UseCaseProps) => import("react/jsx-runtime").JSX.Element;
export default UseCase;
