import { TypographyProps } from '@mui/material';
export interface SignatureOutputModel {
    title?: string;
    titleProps?: Omit<TypographyProps, 'children'>;
    url: string;
}
