import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '@mantine/core'; export interface VaulFooterProps extends BoxProps, CompoundStylesApiProps, ElementProps<'div'> { } export type VaulFooterStylesNames = 'footer'; export type VaulFooterFactory = Factory<{ props: VaulFooterProps; ref: HTMLDivElement; stylesNames: VaulFooterStylesNames; compound: true; }>; export declare const VaulFooter: import('@mantine/core').MantineComponent<{ props: VaulFooterProps; ref: HTMLDivElement; stylesNames: VaulFooterStylesNames; compound: true; }>;