import React from 'react'; import { LayoutProps } from '../Layout'; export declare type ThreeColumnLayoutProps = LayoutProps & { /** The after aside content. */ after: NonNullable; /** The before aside content. */ before: NonNullable; }; /** A three-column layout. */ export default function ThreeColumnLayout({ children, ...props }: ThreeColumnLayoutProps): JSX.Element; //# sourceMappingURL=index.d.ts.map