import React from 'react'; import { ExternalStyles, Theme } from '../../styles'; import { Omit } from '../../util'; export interface ModalBackdropProps extends Omit, 'style'> { style?: ExternalStyles; /** * @description depthLevel allows you to customize the depth of the container and the backdrop of the modal * @default 1 - the lowest possible value */ depthLevel?: number; } export declare function ModalBackdrop(props: ModalBackdropProps): JSX.Element; export declare namespace ModalBackdrop { var defaultProps: Partial; } export declare const styles: (theme: Theme, depthLevel: number) => { backdrop: React.CSSProperties; };