/// import { IconName } from '@harnessio/icons'; export declare enum Views { LIST = "LIST", GRID = "GRID", SPLIT_VIEW = "SPLIT_VIEW" } export interface GridListToggleProps { initialSelectedView?: Views; onViewToggle?: (selectedView: Views) => void; icons?: { left?: IconName; right?: IconName; }; splitView?: boolean; } export declare function GridListToggle(props: GridListToggleProps): JSX.Element;