import type { GriffelStyle } from '@griffel/style-types'; import type { MarginBlockInput } from './types'; type MarginBlockStyle = Pick; /** * A function that implements CSS spec conformant expansion for "margin-block" * * @example * marginBlock('10px') * marginBlock('10px', '5px') * * See https://developer.mozilla.org/en-US/docs/Web/CSS/margin-block * * @deprecated Just use `{ marginBlock: '10px' }` instead as Griffel supports CSS shorthands now */ export declare function marginBlock(start: MarginBlockInput, end?: MarginBlockInput): MarginBlockStyle; export {};