/** Configuration of playground's dynamic content */
export interface NgDocPlaygroundContent {
    /** Label of the content, will be used in the playground to display toggle */
    label: string;
    /** Template of the current dynamic content */
    template: string;
}
