/// declare type PropsT = { title: any; content: any; footer: { onClick?: () => void; text: string; }; styles?: any; }; declare const LandingContainer: ({ title, content, footer: { onClick, text }, styles }: PropsT) => JSX.Element; export default LandingContainer;