import type { SVGAttributes } from 'svelte/elements'; type TitleType = { id?: string; title?: string; }; type DescType = { id?: string; desc?: string; }; interface Props extends SVGAttributes { title?: TitleType; desc?: DescType; ariaLabel?: string; size?: number; role?: string; color?: string; strokeWidth?: number; } /** * [Go to docs](https://svelte-animated-icons.codewithshin.com/) * ## Props * @prop size = 24 * @prop role = 'img' * @prop color = 'currentColor' * @prop strokeWidth = 1.5 * @prop title * @prop desc * @prop ariaLabel = 'archive box' * @prop ...restProps */ declare const BeakerCustom: import("svelte").Component; type BeakerCustom = ReturnType; export default BeakerCustom;