@abgov/react-components
Version:
Government of Alberta - UI components for React
27 lines (26 loc) • 778 B
TypeScript
import { ReactNode } from 'react';
interface WCProps {
leftcolumnwidth?: string;
maxcontentwidth?: string;
rightcolumnwidth?: string;
}
declare module "react" {
namespace JSX {
interface IntrinsicElements {
"goa-three-column-layout": WCProps & React.HTMLAttributes<HTMLElement>;
}
}
}
export interface GoabThreeColumnLayoutProps {
leftColumnWidth?: string;
rightColumnWidth?: string;
maxContentWidth?: string;
header?: ReactNode;
footer?: ReactNode;
nav?: ReactNode;
sidebar?: ReactNode;
sideMenu?: ReactNode;
children: ReactNode;
}
export declare function GoabThreeColumnLayout(props: GoabThreeColumnLayoutProps): import("react/jsx-runtime").JSX.Element;
export default GoabThreeColumnLayout;