export type BackdropStyle = 'regular' | 'hidden' | 'interactive' | 'static';
export interface BackdropVariant {
    backdropStyle?: BackdropStyle;
}
export declare const useBackdropVariant: ({ backdropStyle }: BackdropVariant) => {
    class: "hidden" | "interactive" | "static" | null;
};
