import type { ComponentStatus, IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export type TProps = HTMLAttributes<HTMLDivElement> & IComponentBaseProps;
export type TLineProps = HTMLAttributes<HTMLPreElement> & IComponentBaseProps & {
    dataPrefix?: boolean | string;
    status?: ComponentStatus;
};
