import React from 'react';
import { BoxProps } from '@mui/material';
import type { ChipProps } from '../chip';
export interface SetupCardHeaderProps extends BoxProps {
    title?: string;
    subheader?: string;
    chipText?: React.ReactNode | string;
    isComplete?: boolean;
    chipBackground?: ChipProps['color'];
    action?: any;
}
export default function SetupCardHeader(props: SetupCardHeaderProps): JSX.Element;
//# sourceMappingURL=setup-card-header.d.ts.map