import React from 'react'; export interface LayoutProps extends React.HTMLAttributes { align?: 'left' | 'center' | 'right' | 'justify'; children: React.ReactNode; gap?: string; valign?: 'top' | 'center' | 'bottom' | 'justify'; vertical?: boolean; wrap?: boolean; } declare const Layout: React.ForwardRefExoticComponent>; export default Layout;