import { GapProperty } from '@johanneslumpe/css-types'; import { StyleOptions } from '../../types'; export interface GapProps { /** * The **`gap`** CSS property sets the gaps (gutters) between rows and columns. It is a shorthand for `row-gap` and `column-gap`. * * @see https://developer.mozilla.org/docs/Web/CSS/gap */ style$Gap: T; } export declare const gap: ({ themeProp, }?: Partial, Theme, Extract>>) => (props: import("../../types").WithTheme, Theme, Breakpoints>) => import("../../types").Styles | undefined;