import React from 'react'; import type { RootProps } from '../../engines'; import type { NoteProps } from './Note.types'; export declare const noteRoot: (Root: RootProps) => React.ForwardRefExoticComponent<{ title?: React.ReactNode; text?: React.ReactNode; contentBefore?: React.ReactNode; contentBeforeSizing?: "fixed" | "scalable"; stretch?: boolean; width?: string | number; height?: string | number; view?: string; size?: string; hasClose?: boolean; onCloseButtonClick?: () => void; } & React.HTMLAttributes & React.RefAttributes>; export declare const noteConfig: { name: string; tag: string; layout: (Root: RootProps) => React.ForwardRefExoticComponent<{ title?: React.ReactNode; text?: React.ReactNode; contentBefore?: React.ReactNode; contentBeforeSizing?: "fixed" | "scalable"; stretch?: boolean; width?: string | number; height?: string | number; view?: string; size?: string; hasClose?: boolean; onCloseButtonClick?: () => void; } & React.HTMLAttributes & React.RefAttributes>; base: import("styled-components").FlattenSimpleInterpolation; variations: { view: { css: import("styled-components").FlattenSimpleInterpolation; }; size: { css: import("styled-components").FlattenSimpleInterpolation; }; }; defaults: { view: string; size: string; }; }; //# sourceMappingURL=Note.d.ts.map