import { defaultIcons } from './default-icons.js';
type IconKeys = keyof typeof defaultIcons;
/**
 * Creates a SVG sprite sheet with the given icons.
 * @param icons The icon keys to use
 * @returns String representation of the SVG sprite sheet
 */
export declare const createSpriteSheet: (icons: IconKeys[]) => string;
export {};
