export interface YamlExample {
    title: string;
    description: string;
    yaml: string;
    snippet?: boolean;
}
export interface ConsoleYAMLSample {
    metadata: {
        name: string;
    };
    spec: {
        title: string;
        description: string;
        yaml: string;
        snippet?: boolean;
        targetResource: {
            apiVersion: string;
            kind: string;
        };
    };
}
