interface SvgstoreOptions { inline?: boolean; } interface SvgstoreApi { add: (id: string, svg: string) => SvgstoreApi; toString: (options?: SvgstoreOptions) => string; } declare const svgstore: (options?: SvgstoreOptions) => SvgstoreApi; export default svgstore;