import React from "react"; interface DSApplicationPageProps { embedded?: boolean; children: React.ReactNode; /** * Title image url and position from the center in percents */ titleImageUrl?: string; titleImagePosition?: { x: number; y: number; }; } export declare const DSApplicationPage: { ({ embedded, children, titleImageUrl, titleImagePosition }: DSApplicationPageProps): JSX.Element; Header: ({ title, subtitle, logoUrl }: import("./ui").HeaderProps) => JSX.Element; MediaCard: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: React.ElementType | undefined; }, React.DetailedHTMLProps, HTMLDivElement>, {}>; Section: ({ title, children }: import("./ui").SectionProps) => JSX.Element; Separator: import("@emotion/styled").StyledComponent<{ theme?: import("@emotion/react").Theme | undefined; as?: React.ElementType | undefined; }, React.DetailedHTMLProps, HTMLHRElement>, {}>; ThankYouIllustration: () => JSX.Element; }; export {};