import React from 'react'; import { StackProps } from '../View/Stack'; export declare type LayoutProps = StackProps & { type?: 'column' | 'row'; children?: React.ReactNode; }; export declare const LayoutContext: React.Context<{ total: number; flexes: number[]; type: LayoutProps['type']; }>; export declare const acceptsProps: (child: any, key: any) => boolean; export declare const Layout: React.MemoExoticComponent<(props: LayoutProps) => JSX.Element>; //# sourceMappingURL=Layout.d.ts.map