import React, { MouseEvent, ReactNode, Ref } from 'react'; import { SimpleInterpolation } from 'styled-components'; import { ElevationRange } from '@monorail/helpers/exports'; import { CommonComponentType } from '@monorail/types'; export declare const AppContainer: import("styled-components").StyledComponent<"div", any, CommonComponentType, never>; export declare const PageContent: import("styled-components").StyledComponent<"div", any, CommonComponentType, never>; export declare const SectionContent: import("styled-components").StyledComponent) => void) | undefined; children?: React.ReactNode; } & React.RefAttributes>, any, CommonComponentType, never>; export declare type SectionProps = CommonComponentType & { hover?: boolean; elevation?: ElevationRange; onClick?: (event: MouseEvent) => void; ref?: Ref; cssCardContent?: SimpleInterpolation; children?: ReactNode; flat?: boolean; }; export declare const Section: import("styled-components").StyledComponent & React.RefAttributes>, any, SectionProps, never>;