import { type SpacingProperties } from './sprinkle-properties.js'; /** * Defines the box gap props. * @public */ export interface GapProps { /** Defines gap */ gap?: SpacingProperties; /** Defines row gap */ rowGap?: SpacingProperties; /** Defines column gap */ columnGap?: SpacingProperties; } /** * Given a set of props will return the relevant class names for the gap sprinkles * and the remaining props. * @internal */ export declare function getGapSprinkles(props: T, defaults?: Partial): [className: string, remainingProps: Omit];