import { ICustomizable, IParent } from '../../core'; export interface LightButtonGroupProps extends ICustomizable, IParent { rows?: number; cols?: number; } export declare function LightButtonGroup(props: LightButtonGroupProps): JSX.Element;