import { type Size } from '../common.js';
import type { Snippet } from 'svelte';
import type { HTMLAttributes } from 'svelte/elements';
interface Props extends HTMLAttributes<HTMLDivElement> {
    children: Snippet;
    baseClass: string;
    label: string;
    helper?: string;
    size?: Size;
}
declare const FormControl: import("svelte").Component<Props, {}, "">;
type FormControl = ReturnType<typeof FormControl>;
export default FormControl;
