bpms_site/.svn/pristine/ab/ab0a22bfa92ed6b6f13971e108c24bb652447870.svn-base
2025-11-02 16:38:49 +03:30

9 lines
208 B
Plaintext

import * as React from 'react';
export type OverlayProps = {
children?: React.ReactNode;
className?: string;
fixed?: boolean;
};
declare const Overlay: React.FC<OverlayProps>;
export { Overlay };