import { Component } from 'react'; import type { PagesPageProps } from './props'; /** --- parent: Pages id: Pages.Page --- **/ declare class Page extends Component { static readonly componentId = "Pages.Page"; static allowedProps: readonly (keyof { children?: React.ReactNode | ((history: import("../PagesContext").PagesContextType["history"], navigateToPreviousPage: import("../PagesContext").PagesContextType["navigateToPreviousPage"]) => React.ReactNode); defaultFocusElement?: import("@instructure/shared-types").UIElement | (() => import("@instructure/shared-types").UIElement); padding?: import("@instructure/emotion").Spacing; textAlign?: "start" | "center" | "end"; })[]; static defaultProps: { defaultFocusElement: null; padding: string; textAlign: string; children: null; }; get _content(): Element | null; ref: Element | null; handleRef: (el: Element | null) => void; get defaultFocusElement(): Node | Window; get focusable(): boolean; focus(): void; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default Page; export { Page }; //# sourceMappingURL=index.d.ts.map