import type { DocumentType } from '../../core/models/api/document';
import type { Translatable } from '../../language/types';
import type { SvgName } from '../ui/atoms/Svg/Svg';
export interface DocumentGuidanceProps {
    type?: DocumentType;
    className?: string;
}
export interface DocumentGuidanceItem {
    svgName: SvgName;
    translationKey: Translatable;
    valid?: boolean;
}
