import { ExtendComponent, Factory, MantineThemeComponent } from '@mantine/core'; import { ReactNode } from 'react'; export interface VaulPortalProps { target?: HTMLElement | null; children: ReactNode; } export type VaulPortalFactory = Factory<{ props: VaulPortalProps; }>; export declare const VaulPortal: { (_props: VaulPortalProps): import("react/jsx-runtime").JSX.Element; displayName: string; extend: (c: ExtendComponent) => MantineThemeComponent; };