import React from 'react'; import { LayoutProps } from '../Layout'; export declare type TwoColumnLayoutProps = LayoutProps & { /** Display the aside after the content. */ after?: boolean; /** The aside content. */ aside: NonNullable; /** Display the aside after the content. */ before?: boolean; }; /** A two-column layout. */ declare function TwoColumnLayout({ aside, after, before, children, ...props }: TwoColumnLayoutProps): JSX.Element; declare namespace TwoColumnLayout { var propTypes: { after: import("prop-types").Requireable; before: import("prop-types").Requireable; }; } export default TwoColumnLayout; //# sourceMappingURL=index.d.ts.map