import type { CardHeaderProps } from '@mui/material'; import type { ReactNode } from 'react'; import React from 'react'; import type { CardExProps } from './CardEx.js'; /** Props for {@link PageCard}. */ export interface PageCardProps extends CardExProps { action?: ReactNode; onRefresh?: () => void; subheader?: CardHeaderProps['subheader']; } /** Page-level card with a title header and optional refresh action. */ export declare const PageCard: { ({ ref, subheader, title, onRefresh, children, action, style, ...props }: PageCardProps): React.JSX.Element; displayName: string; }; //# sourceMappingURL=PageCard.d.ts.map