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