import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { NodeLink } from './nodeLink';
export declare const importsMapStoryChildNodes: {
    NodeLink: typeof NodeLink;
};
/**
 * Child nodes of Story or InlineStory.
 */
export declare class StoryChildNodes implements ModelInterface {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    /**
     * Gets or sets the list of child nodes.
     */
    childNodes: Array<NodeLink>;
    constructor(init?: Partial<StoryChildNodes>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}
