import type { CreateButtonProps, DeleteButtonProps, EditButtonProps, RefreshButtonProps, ListButtonProps, SaveButtonProps } from "../buttons/types"; import type { BoxProps } from "@mui/material/Box"; import type { CardActionsProps } from "@mui/material/CardActions"; import type { CardContentProps } from "@mui/material/CardContent"; import type { CardHeaderProps } from "@mui/material/CardHeader"; import type { CardProps } from "@mui/material/Card"; import type { RefineCrudCreateProps, RefineCrudEditProps, RefineCrudListProps, RefineCrudShowProps } from "@refinedev/ui-types"; export type CreateProps = RefineCrudCreateProps; export type EditProps = RefineCrudEditProps; export type ListProps = RefineCrudListProps; export type ShowProps = RefineCrudShowProps; //# sourceMappingURL=types.d.ts.map