export default interface Font extends Object {
    family?: string;
    variants?: string[];
    subsets?: string[];
    text?: string;
}
