/// <reference types="react" />
export declare function ColorStory(colorName: any, colorFn: any): JSX.Element;
export declare function ColorPalette({ color }: {
    color: any;
}): JSX.Element;
export declare function ColorSwatch({ color, title, ...props }: {
    [x: string]: any;
    color: any;
    title?: any;
}): JSX.Element;
