import { CSSProperties, ReactNode } from 'react'; import './index.os.less'; declare type SentreLayoutProps = { children?: ReactNode; gap?: number; style?: CSSProperties; }; declare const SentreLayout: ({ gap, style, children }: SentreLayoutProps) => JSX.Element; export default SentreLayout;