import { GridProps } from '@mui/material'; import { default as React, PropsWithChildren } from 'react'; /** * Basic card form layout. * It is a simple form layout that uses a card as the main container. * * @see https://mui.com/material-ui/react-stack/ */ declare function CardForm({ children, spacing, defaultValues, ...gridProps }: CardFormProps): JSX.Element; declare namespace CardForm { var Section: ({ children, content, title, subheader, secondary, toolbar, lg, md, sm, xs, ...gridProps }: SectionProps) => JSX.Element; } type CardFormProps = PropsWithChildren<{ spacing?: number; defaultValues?: any; }> & GridProps; type SectionProps = PropsWithChildren<{ content?: boolean | undefined | null; title?: string | React.ReactNode | null; subheader?: string | React.ReactNode; secondary?: string | React.ReactNode; toolbar?: React.ReactNode | boolean; }> & GridProps; export { CardForm }; export type { CardFormProps, SectionProps }; //# sourceMappingURL=CardForm.d.ts.map