import { ReactElement, ReactNode } from 'react'; interface ContentProps { title?: ReactNode | string; subheader?: ReactNode | string; secondary?: ReactNode | string; toolbar?: ReactElement; progress?: ReactNode; isSmall: boolean; modal: boolean; sx?: any; setCurrentStep: (step: number) => void; } declare function Content({ title, subheader, secondary, toolbar, progress, isSmall, modal, sx, setCurrentStep }: ContentProps): import("react/jsx-runtime").JSX.Element; export { Content }; //# sourceMappingURL=Content.d.ts.map