import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@mantine/core'; export interface VaulHandlerProps extends BoxProps, CompoundStylesApiProps, Omit, 'children'> { } export type VaulHandlerStylesNames = 'handler'; export type VaulHandlerFactory = Factory<{ props: VaulHandlerProps; ref: HTMLDivElement; stylesNames: VaulHandlerStylesNames; compound: true; }>; export declare const VaulHandler: import('@mantine/core').MantineComponent<{ props: VaulHandlerProps; ref: HTMLDivElement; stylesNames: VaulHandlerStylesNames; compound: true; }>;