import { default as React, CSSProperties } from 'react'; import { WithChildren } from '../../../../core/types.js'; interface IconsExampleGridProps extends WithChildren { columns: "two" | "four"; style?: CSSProperties; } export declare const IconsExampleGrid: React.FC; export {};