/** * External dependencies */ import type { CSSProperties } from 'react'; /** * Internal dependencies */ import type { FlexProps } from '../../flex/types'; export declare type ControlGroupContext = { isFirst?: boolean; isLast?: boolean; isMiddle?: boolean; isOnly?: boolean; isVertical?: boolean; styles?: string; }; export declare type Props = Pick & { /** * Adjust the layout (width) of content using CSS grid (`grid-template-columns`). */ templateColumns?: CSSProperties['gridTemplateColumns']; /** * The children elements. */ children: React.ReactNode; }; //# sourceMappingURL=types.d.ts.map