import React from "react";
export interface GridViewProps {
    label: string;
    active?: boolean;
    strokeColor?: string;
    onClick?: () => void;
}
export declare const GridView: React.FC<GridViewProps>;
