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