import * as React from 'react';
export interface SheetProps {
    visible: boolean;
}
declare const Sheet: React.FC<React.PropsWithChildren<SheetProps>>;
export default Sheet;
