export interface CliOptions {
    debug?: boolean;
    remote?: boolean;
    bio?: boolean;
    social?: boolean;
    ad?: boolean;
    clear?: boolean;
    [key: string]: unknown;
}
export interface Config {
    github: {
        username: string;
    };
    ad: {
        message: string;
        color: string;
    };
    remoteDataUrl: string;
}
export interface Bio {
    name: string;
    title: string;
    description: string;
}
export interface Social {
    links: {
        name: string;
        url: string;
        icon: string;
        color: string;
    }[];
}
