import { type PropsWithChildren } from "react"; type FullscreenProps = { center?: boolean; padding?: "xs" | "sm" | "md" | "lg" | "xl" | "none"; gap?: number | "xs" | "sm" | "md" | "lg" | "xl"; keyboardAware?: boolean; } & PropsWithChildren; export default function Fullscreen({ children, center, padding, gap, keyboardAware, }: FullscreenProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=fullscreen.d.ts.map