import { default as React } from 'react'; import { default as PropTypes } from 'prop-types'; export interface DisabledShimProps { children: React.ReactNode; isDisabled?: boolean; } /** * Disables any area of a page with a white overlay shim and the * applicable `aria-disabled` value. */ declare const DisabledShim: { ({ isDisabled, children }: DisabledShimProps): React.JSX.Element; propTypes: { /** * Sets disabled state over all `children` passed in. */ isDisabled: PropTypes.Requireable; /** Content that can be disabled */ children: PropTypes.Requireable>; }; }; export default DisabledShim; //# sourceMappingURL=index.d.ts.map