/** * Copyright (c) ACT, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { ButtonProps } from '@mui/material/Button'; import { IconProps } from '@mui/material/Icon'; import { TypographyProps } from '@mui/material/Typography'; import { GridProps, SizingProps } from '@mui/system'; import { ComponentClass, CSSProperties, FC, ReactElement, ReactNode } from 'react'; export interface EmptyStateProps { buttonProps?: ButtonProps; description?: string | ReactNode; descriptionTypographyProps?: TypographyProps; Icon?: FC | ComponentClass; iconProps?: IconProps; style?: CSSProperties; title?: string | ReactElement; titleGridContainerProps?: GridProps & SizingProps; titleTypographyProps?: TypographyProps & { component?: string; }; } export declare const EmptyState: FC; export default EmptyState; //# sourceMappingURL=index.d.ts.map