import { ViewTemplate } from "@microsoft/fast-element"; import { StoryContext } from "@storybook/csf"; export declare type Args = { [name: string]: any; }; /** * A helper that returns a function to bind a Storybook story to a ViewTemplate. * * @param template - The ViewTemplate to render * @returns - a function to bind a Storybook story */ export declare function renderComponent(template: ViewTemplate): (args: TArgs, context: StoryContext) => Element | DocumentFragment | null; /** Renders html to target using css selector string */ export declare function renderHtmlTemplate(template: string, selector: string): void; //# sourceMappingURL=render.d.ts.map