import { FC } from 'react'; export interface StencilGridProps { visible?: boolean; columns?: number; rows?: number; className?: string; } export declare const StencilGrid: FC;