import type { ComponentSize, IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export type TProps = HTMLAttributes<HTMLElement> & IComponentBaseProps & {
    size?: ComponentSize;
};
