import type { ReactNode } from 'react'; import type { ForwardRefForwardPropsComponent } from '../../types'; import type { PageTemplateProps, PageLayoutProps } from './PageTemplates'; export interface DashboardPageProps extends PageTemplateProps { a: ReactNode; b: ReactNode; c: ReactNode; filters?: ReactNode[]; fitToViewport?: boolean; } export interface DashboardPageLayoutProps extends PageLayoutProps { filters?: ReactNode[]; filterPosition?: 'block-start' | 'inline-start' | 'inline-end'; fitToViewport?: boolean; regionFullWidth: ReactNode[]; } export declare const StyledFilterRegion: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, "renderSingleRegion"> & { renderSingleRegion?: boolean; }, "ref"> & { ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject | null | undefined; }, never>> & string; export declare const StyledDashboardRegion: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit, HTMLDivElement>, "renderSingleRegion"> & { renderSingleRegion?: boolean; }, "ref"> & { ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject | null | undefined; }, never>> & string; export declare const StyledDashboardPageLayout: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, "scrollContent" | "minContentHeight"> & { scrollContent: PageLayoutProps["scrollContent"]; minContentHeight?: number; }, "ref"> & { ref?: ((instance: HTMLDivElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject | null | undefined; }, Pick>> & string; declare const DashboardPage: ForwardRefForwardPropsComponent; export default DashboardPage; //# sourceMappingURL=DashboardPage.d.ts.map