1 | import { type HTMLChakraProps, type SystemStyleObject } from "../../styled-system";
|
2 | export interface BleedProps extends HTMLChakraProps<"div"> {
|
3 | |
4 |
|
5 |
|
6 | inline?: SystemStyleObject["marginInline"];
|
7 | |
8 |
|
9 |
|
10 | block?: SystemStyleObject["marginBlock"];
|
11 | |
12 |
|
13 |
|
14 | inlineStart?: SystemStyleObject["marginInlineStart"];
|
15 | |
16 |
|
17 |
|
18 | inlineEnd?: SystemStyleObject["marginInlineEnd"];
|
19 | |
20 |
|
21 |
|
22 | blockStart?: SystemStyleObject["marginBlockStart"];
|
23 | |
24 |
|
25 |
|
26 | blockEnd?: SystemStyleObject["marginBlockEnd"];
|
27 | }
|
28 | export declare const Bleed: import("react").ForwardRefExoticComponent<BleedProps & import("react").RefAttributes<HTMLDivElement>>;
|