import type { GlobalAttributesT, XstyledProps } from '@elliemae/ds-props-helpers'; import type { FontSizeProps, ColorProps } from '@elliemae/ds-system'; import type { WeakValidationMap } from 'react'; export declare namespace DSBackdropT { interface IProps { type?: 'fill' | 'cover'; onClick?: React.MouseEventHandler; } interface Props extends IProps, Omit, keyof IProps | 'color'>, XstyledProps, FontSizeProps, ColorProps { } } export declare const DSBackdropPropTypes: WeakValidationMap;