1 | import { type ConditionalValue, type HTMLChakraProps, type SystemStyleObject } from "../../styled-system";
|
2 | export interface FloatOptions {
|
3 | |
4 |
|
5 |
|
6 | offsetX?: SystemStyleObject["left"];
|
7 | |
8 |
|
9 |
|
10 | offsetY?: SystemStyleObject["top"];
|
11 | |
12 |
|
13 |
|
14 | offset?: SystemStyleObject["top"];
|
15 | |
16 |
|
17 |
|
18 |
|
19 | placement?: ConditionalValue<"bottom-end" | "bottom-start" | "top-end" | "top-start" | "bottom-center" | "top-center" | "middle-center" | "middle-end" | "middle-start">;
|
20 | }
|
21 | export interface FloatProps extends Omit<HTMLChakraProps<"div">, keyof FloatOptions>, FloatOptions {
|
22 | }
|
23 | export declare const Float: import("react").ForwardRefExoticComponent<FloatProps & import("react").RefAttributes<HTMLDivElement>>;
|