import React from 'react'; import { IComponentBaseProps } from '../types'; export declare const windowMockupColors: readonly ["base-100", "base-200", "base-300", "neutral", "neutral", "primary", "secondary", "accent", "info", "success", "warning", "error"]; type WindowMockupColors = typeof windowMockupColors[number]; export type WindowMockupProps = React.HTMLAttributes & IComponentBaseProps & { frameColor?: WindowMockupColors; backgroundColor?: WindowMockupColors; border?: boolean; borderColor?: WindowMockupColors; }; declare const WindowMockup: React.ForwardRefExoticComponent & IComponentBaseProps & { frameColor?: "base-100" | "base-200" | "base-300" | "neutral" | "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | undefined; backgroundColor?: "base-100" | "base-200" | "base-300" | "neutral" | "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | undefined; border?: boolean | undefined; borderColor?: "base-100" | "base-200" | "base-300" | "neutral" | "primary" | "secondary" | "accent" | "info" | "success" | "warning" | "error" | undefined; } & React.RefAttributes>; export default WindowMockup;