/** * Nunjucks macro option examples * (with typed keys) * * @type {Record} */ export const examples: Record; /** * Nunjucks macro option examples * * @satisfies {{ [example: string]: MacroExample }} */ declare const fixtures: { default: { context: { text: string; }; }; button: { context: { text: string; button: boolean; }; variants: ({ description: string; context: { copyButtonClassList: string[]; background?: undefined; }; options?: undefined; } | { description: string; context?: undefined; options?: undefined; } | { description: string; context: { background: string; copyButtonClassList: string[]; }; options: { layout: string; }; })[]; }; 'with button double click prevented': { context: { text: string; button: { preventDoubleClick: boolean; }; }; }; 'with button double click not prevented': { context: { text: string; button: { preventDoubleClick: boolean; }; }; }; 'without border': { context: { text: string; border: boolean; }; options: { layout: string; }; }; 'with custom HTML': { context: { html: string; }; }; 'with custom HTML and button': { context: { html: string; button: boolean; }; }; 'with custom HTML (escaped) and button': { context: { button: boolean; }; callBlock: string; }; 'with scroll overflow': { context: { text: string; }; }; 'with scroll overflow and button': { context: { text: string; button: boolean; }; }; 'with translations': { context: { html: string; button: boolean; copyButtonText: string; copiedButtonText: string; copiedAnnouncementText: string; }; }; }; import type { MacroExample } from '#lib'; export {}; //# sourceMappingURL=fixtures.d.mts.map