10 lines
405 B
TypeScript
10 lines
405 B
TypeScript
import * as React from 'react';
|
|
import { SxProps, Theme } from '@mui/system';
|
|
export type GridFooterContainerProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
sx?: SxProps<Theme>;
|
|
};
|
|
declare const GridFooterContainer: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
sx?: SxProps<Theme> | undefined;
|
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
export { GridFooterContainer };
|