import type { Snippet } from 'svelte';
interface Props {
    children?: Snippet;
    attributes?: Record<string, any>;
}
declare const Legend: import("svelte").Component<Props, {}, "">;
type Legend = ReturnType<typeof Legend>;
export default Legend;
