import { HTMLDirective } from "@microsoft/fast-element";
import type { CaptureType } from "@microsoft/fast-element";
import type { SyntheticViewTemplate } from "@microsoft/fast-element";
/**
* A value that can be statically composed into a
* foundation template.
* @remarks
* When providing a string, take care to ensure that it is
* safe and will not enable an XSS attack.
* @public
*/
export type StaticallyComposableHTML = string | HTMLDirective | SyntheticViewTemplate | undefined;
/**
* A function to compose template options.
* @public
*/
export declare function staticallyCompose(item: StaticallyComposableHTML): CaptureType;
//# sourceMappingURL=template-helpers.d.ts.map