import { type Snippet } from "svelte";
type Size = "heading-2xl" | "heading-xl" | "heading-lg" | "heading-md" | "body-base" | "body-small" | "label-button" | "label-default" | "caption-default" | "caption-link";
type Props = {
    size?: Size;
    children?: Snippet;
};
declare const Typography: import("svelte").Component<Props, {}, "">;
type Typography = ReturnType<typeof Typography>;
export default Typography;
