import type { IComponentBaseProps } from '../../types';
import type { HTMLAttributes } from 'svelte/elements';
export declare const windowMockupColors: readonly ["base-100", "base-200", "base-300", "neutral", "primary", "secondary", "accent", "info", "success", "warning", "error"];
type TWindowMockupColors = (typeof windowMockupColors)[number];
export type TProps = Omit<HTMLAttributes<HTMLDivElement>, 'color'> & IComponentBaseProps & {
    frameColor?: TWindowMockupColors;
    backgroundColor?: TWindowMockupColors;
    border?: boolean;
    borderColor?: TWindowMockupColors;
};
export {};
