///
import React from 'react';
import { MestCss } from "../themes";
export type SkeletonProps = React.PropsWithChildren<{
fetching?: boolean;
css?: MestCss;
wrapperCss?: MestCss;
}>;
export declare const StyledSkeletonWrapper: import("@stitches/react/types/styled-component").StyledComponent | undefined;
} & import("../themes").MestGenericProps & {
prefix?: string | undefined;
color?: string | undefined;
content?: string | undefined;
translate?: "yes" | "no" | undefined;
onChange?: React.FormEventHandler | undefined;
slot?: string | undefined;
style?: React.CSSProperties | undefined;
title?: string | undefined;
id?: string | undefined;
hidden?: boolean | undefined;
children?: React.ReactNode;
defaultChecked?: boolean | undefined;
defaultValue?: string | number | readonly string[] | undefined;
suppressContentEditableWarning?: boolean | undefined;
suppressHydrationWarning?: boolean | undefined;
accessKey?: string | undefined;
autoFocus?: boolean | undefined;
contentEditable?: "inherit" | (boolean | "true" | "false") | undefined;
contextMenu?: string | undefined;
dir?: string | undefined;
draggable?: (boolean | "true" | "false") | undefined;
lang?: string | undefined;
nonce?: string | undefined;
placeholder?: string | undefined;
spellCheck?: (boolean | "true" | "false") | undefined;
tabIndex?: number | undefined;
radioGroup?: string | undefined;
role?: React.AriaRole | undefined;
about?: string | undefined;
datatype?: string | undefined;
inlist?: any;
property?: string | undefined;
rel?: string | undefined;
resource?: string | undefined;
rev?: string | undefined;
typeof?: string | undefined;
vocab?: string | undefined;
autoCapitalize?: string | undefined;
autoCorrect?: string | undefined;
autoSave?: string | undefined;
itemProp?: string | undefined;
itemScope?: boolean | undefined;
itemType?: string | undefined;
itemID?: string | undefined;
itemRef?: string | undefined;
results?: number | undefined;
security?: string | undefined;
unselectable?: "on" | "off" | undefined;
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
is?: string | undefined;
'aria-activedescendant'?: string | undefined;
'aria-atomic'?: (boolean | "true" | "false") | undefined;
'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
'aria-busy'?: (boolean | "true" | "false") | undefined;
'aria-checked'?: boolean | "true" | "false" | "mixed" | undefined;
'aria-colcount'?: number | undefined;
'aria-colindex'?: number | undefined;
'aria-colspan'?: number | undefined;
'aria-controls'?: string | undefined;
'aria-current'?: boolean | "time" | "true" | "false" | "page" | "step" | "location" | "date" | undefined;
'aria-describedby'?: string | undefined;
'aria-details'?: string | undefined;
'aria-disabled'?: (boolean | "true" | "false") | undefined;
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
'aria-errormessage'?: string | undefined;
'aria-expanded'?: (boolean | "true" | "false") | undefined;
'aria-flowto'?: string | undefined;
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "true" | "false" | "listbox" | "tree" | undefined;
'aria-hidden'?: (boolean | "true" | "false") | undefined;
'aria-invalid'?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
'aria-keyshortcuts'?: string | undefined;
'aria-label'?: string | undefined;
'aria-labelledby'?: string | undefined;
'aria-level'?: number | undefined;
'aria-live'?: "off" | "assertive" | "polite" | undefined;
'aria-modal'?: (boolean | "true" | "false") | undefined;
'aria-multiline'?: (boolean | "true" | "false") | undefined;
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
'aria-orientation'?: "horizontal" | "vertical" | undefined;
'aria-owns'?: string | undefined;
'aria-placeholder'?: string | undefined;
'aria-posinset'?: number | undefined;
'aria-pressed'?: boolean | "true" | "false" | "mixed" | undefined;
'aria-readonly'?: (boolean | "true" | "false") | undefined;
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
'aria-required'?: (boolean | "true" | "false") | undefined;
'aria-roledescription'?: string | undefined;
'aria-rowcount'?: number | undefined;
'aria-rowindex'?: number | undefined;
'aria-rowspan'?: number | undefined;
'aria-selected'?: (boolean | "true" | "false") | undefined;
'aria-setsize'?: number | undefined;
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
'aria-valuemax'?: number | undefined;
'aria-valuemin'?: number | undefined;
'aria-valuenow'?: number | undefined;
'aria-valuetext'?: string | undefined;
dangerouslySetInnerHTML?: {
__html: string | TrustedHTML;
} | undefined;
onCopy?: React.ClipboardEventHandler | undefined;
onCopyCapture?: React.ClipboardEventHandler | undefined;
onCut?: React.ClipboardEventHandler | undefined;
onCutCapture?: React.ClipboardEventHandler | undefined;
onPaste?: React.ClipboardEventHandler | undefined;
onPasteCapture?: React.ClipboardEventHandler | undefined;
onCompositionEnd?: React.CompositionEventHandler | undefined;
onCompositionEndCapture?: React.CompositionEventHandler | undefined;
onCompositionStart?: React.CompositionEventHandler | undefined;
onCompositionStartCapture?: React.CompositionEventHandler | undefined;
onCompositionUpdate?: React.CompositionEventHandler | undefined;
onCompositionUpdateCapture?: React.CompositionEventHandler | undefined;
onFocus?: React.FocusEventHandler | undefined;
onFocusCapture?: React.FocusEventHandler | undefined;
onBlur?: React.FocusEventHandler | undefined;
onBlurCapture?: React.FocusEventHandler | undefined;
onChangeCapture?: React.FormEventHandler | undefined;
onBeforeInput?: React.FormEventHandler | undefined;
onBeforeInputCapture?: React.FormEventHandler | undefined;
onInput?: React.FormEventHandler | undefined;
onInputCapture?: React.FormEventHandler | undefined;
onReset?: React.FormEventHandler | undefined;
onResetCapture?: React.FormEventHandler | undefined;
onSubmit?: React.FormEventHandler | undefined;
onSubmitCapture?: React.FormEventHandler | undefined;
onInvalid?: React.FormEventHandler | undefined;
onInvalidCapture?: React.FormEventHandler | undefined;
onLoad?: React.ReactEventHandler | undefined;
onLoadCapture?: React.ReactEventHandler | undefined;
onError?: React.ReactEventHandler | undefined;
onErrorCapture?: React.ReactEventHandler | undefined;
onKeyDown?: React.KeyboardEventHandler | undefined;
onKeyDownCapture?: React.KeyboardEventHandler | undefined;
onKeyPress?: React.KeyboardEventHandler | undefined;
onKeyPressCapture?: React.KeyboardEventHandler | undefined;
onKeyUp?: React.KeyboardEventHandler | undefined;
onKeyUpCapture?: React.KeyboardEventHandler | undefined;
onAbort?: React.ReactEventHandler | undefined;
onAbortCapture?: React.ReactEventHandler | undefined;
onCanPlay?: React.ReactEventHandler | undefined;
onCanPlayCapture?: React.ReactEventHandler | undefined;
onCanPlayThrough?: React.ReactEventHandler | undefined;
onCanPlayThroughCapture?: React.ReactEventHandler | undefined;
onDurationChange?: React.ReactEventHandler | undefined;
onDurationChangeCapture?: React.ReactEventHandler | undefined;
onEmptied?: React.ReactEventHandler | undefined;
onEmptiedCapture?: React.ReactEventHandler | undefined;
onEncrypted?: React.ReactEventHandler | undefined;
onEncryptedCapture?: React.ReactEventHandler | undefined;
onEnded?: React.ReactEventHandler | undefined;
onEndedCapture?: React.ReactEventHandler | undefined;
onLoadedData?: React.ReactEventHandler | undefined;
onLoadedDataCapture?: React.ReactEventHandler | undefined;
onLoadedMetadata?: React.ReactEventHandler | undefined;
onLoadedMetadataCapture?: React.ReactEventHandler | undefined;
onLoadStart?: React.ReactEventHandler | undefined;
onLoadStartCapture?: React.ReactEventHandler | undefined;
onPause?: React.ReactEventHandler | undefined;
onPauseCapture?: React.ReactEventHandler | undefined;
onPlay?: React.ReactEventHandler | undefined;
onPlayCapture?: React.ReactEventHandler | undefined;
onPlaying?: React.ReactEventHandler | undefined;
onPlayingCapture?: React.ReactEventHandler | undefined;
onProgress?: React.ReactEventHandler | undefined;
onProgressCapture?: React.ReactEventHandler | undefined;
onRateChange?: React.ReactEventHandler | undefined;
onRateChangeCapture?: React.ReactEventHandler | undefined;
onResize?: React.ReactEventHandler | undefined;
onResizeCapture?: React.ReactEventHandler | undefined;
onSeeked?: React.ReactEventHandler | undefined;
onSeekedCapture?: React.ReactEventHandler | undefined;
onSeeking?: React.ReactEventHandler | undefined;
onSeekingCapture?: React.ReactEventHandler | undefined;
onStalled?: React.ReactEventHandler | undefined;
onStalledCapture?: React.ReactEventHandler | undefined;
onSuspend?: React.ReactEventHandler | undefined;
onSuspendCapture?: React.ReactEventHandler | undefined;
onTimeUpdate?: React.ReactEventHandler | undefined;
onTimeUpdateCapture?: React.ReactEventHandler | undefined;
onVolumeChange?: React.ReactEventHandler | undefined;
onVolumeChangeCapture?: React.ReactEventHandler | undefined;
onWaiting?: React.ReactEventHandler | undefined;
onWaitingCapture?: React.ReactEventHandler | undefined;
onAuxClick?: React.MouseEventHandler | undefined;
onAuxClickCapture?: React.MouseEventHandler | undefined;
onClick?: React.MouseEventHandler | undefined;
onClickCapture?: React.MouseEventHandler | undefined;
onContextMenu?: React.MouseEventHandler | undefined;
onContextMenuCapture?: React.MouseEventHandler | undefined;
onDoubleClick?: React.MouseEventHandler | undefined;
onDoubleClickCapture?: React.MouseEventHandler | undefined;
onDrag?: React.DragEventHandler | undefined;
onDragCapture?: React.DragEventHandler | undefined;
onDragEnd?: React.DragEventHandler | undefined;
onDragEndCapture?: React.DragEventHandler | undefined;
onDragEnter?: React.DragEventHandler | undefined;
onDragEnterCapture?: React.DragEventHandler | undefined;
onDragExit?: React.DragEventHandler | undefined;
onDragExitCapture?: React.DragEventHandler | undefined;
onDragLeave?: React.DragEventHandler | undefined;
onDragLeaveCapture?: React.DragEventHandler | undefined;
onDragOver?: React.DragEventHandler | undefined;
onDragOverCapture?: React.DragEventHandler | undefined;
onDragStart?: React.DragEventHandler | undefined;
onDragStartCapture?: React.DragEventHandler | undefined;
onDrop?: React.DragEventHandler | undefined;
onDropCapture?: React.DragEventHandler | undefined;
onMouseDown?: React.MouseEventHandler | undefined;
onMouseDownCapture?: React.MouseEventHandler | undefined;
onMouseEnter?: React.MouseEventHandler | undefined;
onMouseLeave?: React.MouseEventHandler | undefined;
onMouseMove?: React.MouseEventHandler | undefined;
onMouseMoveCapture?: React.MouseEventHandler | undefined;
onMouseOut?: React.MouseEventHandler | undefined;
onMouseOutCapture?: React.MouseEventHandler | undefined;
onMouseOver?: React.MouseEventHandler | undefined;
onMouseOverCapture?: React.MouseEventHandler | undefined;
onMouseUp?: React.MouseEventHandler | undefined;
onMouseUpCapture?: React.MouseEventHandler | undefined;
onSelect?: React.ReactEventHandler | undefined;
onSelectCapture?: React.ReactEventHandler | undefined;
onTouchCancel?: React.TouchEventHandler | undefined;
onTouchCancelCapture?: React.TouchEventHandler | undefined;
onTouchEnd?: React.TouchEventHandler | undefined;
onTouchEndCapture?: React.TouchEventHandler | undefined;
onTouchMove?: React.TouchEventHandler | undefined;
onTouchMoveCapture?: React.TouchEventHandler | undefined;
onTouchStart?: React.TouchEventHandler | undefined;
onTouchStartCapture?: React.TouchEventHandler | undefined;
onPointerDown?: React.PointerEventHandler | undefined;
onPointerDownCapture?: React.PointerEventHandler | undefined;
onPointerMove?: React.PointerEventHandler | undefined;
onPointerMoveCapture?: React.PointerEventHandler | undefined;
onPointerUp?: React.PointerEventHandler | undefined;
onPointerUpCapture?: React.PointerEventHandler | undefined;
onPointerCancel?: React.PointerEventHandler | undefined;
onPointerCancelCapture?: React.PointerEventHandler | undefined;
onPointerEnter?: React.PointerEventHandler | undefined;
onPointerEnterCapture?: React.PointerEventHandler | undefined;
onPointerLeave?: React.PointerEventHandler | undefined;
onPointerLeaveCapture?: React.PointerEventHandler | undefined;
onPointerOver?: React.PointerEventHandler | undefined;
onPointerOverCapture?: React.PointerEventHandler | undefined;
onPointerOut?: React.PointerEventHandler | undefined;
onPointerOutCapture?: React.PointerEventHandler | undefined;
onGotPointerCapture?: React.PointerEventHandler | undefined;
onGotPointerCaptureCapture?: React.PointerEventHandler | undefined;
onLostPointerCapture?: React.PointerEventHandler | undefined;
onLostPointerCaptureCapture?: React.PointerEventHandler | undefined;
onScroll?: React.UIEventHandler | undefined;
onScrollCapture?: React.UIEventHandler | undefined;
onWheel?: React.WheelEventHandler | undefined;
onWheelCapture?: React.WheelEventHandler | undefined;
onAnimationStart?: React.AnimationEventHandler | undefined;
onAnimationStartCapture?: React.AnimationEventHandler | undefined;
onAnimationEnd?: React.AnimationEventHandler | undefined;
onAnimationEndCapture?: React.AnimationEventHandler | undefined;
onAnimationIteration?: React.AnimationEventHandler | undefined;
onAnimationIterationCapture?: React.AnimationEventHandler | undefined;
onTransitionEnd?: React.TransitionEventHandler | undefined;
onTransitionEndCapture?: React.TransitionEventHandler | undefined;
} & import("@stitches/react/types/styled-component").TransformProps<{
flex?: boolean | "center" | "true" | "centerVertical" | "centerAll" | undefined;
flexInline?: boolean | "center" | "true" | "centerVertical" | "centerAll" | undefined;
row?: boolean | "true" | undefined;
column?: boolean | "true" | undefined;
rowReverse?: boolean | "true" | undefined;
columnReverse?: boolean | "true" | undefined;
wrap?: boolean | "true" | undefined;
wrapReverse?: boolean | "true" | undefined;
noWrap?: boolean | "true" | undefined;
}, {
mobile: "(max-width: 640px)";
tablet: "(min-width: 640px) and (max-width: 920px)";
desktop: "(min-width: 920px)";
xs: "(max-width: 640px)";
sm: "(min-width: 640px) and (max-width: 920px)";
md: "(min-width: 920px) and (max-width: 1280px)";
lg: "(min-width: 1280px) and (max-width: 1920px)";
xl: "(min-width: 1920px)";
xsOrUp: "(max-width: 0px)";
smOrUp: "(min-width: 640px)";
mdOrUp: "(min-width: 920px)";
lgOrUp: "(min-width: 1280px)";
xlOrUp: "(min-width: 1920px)";
}> & {
children?: React.ReactNode;
} & React.RefAttributes>, {}, {
mobile: "(max-width: 640px)";
tablet: "(min-width: 640px) and (max-width: 920px)";
desktop: "(min-width: 920px)";
xs: "(max-width: 640px)";
sm: "(min-width: 640px) and (max-width: 920px)";
md: "(min-width: 920px) and (max-width: 1280px)";
lg: "(min-width: 1280px) and (max-width: 1920px)";
xl: "(min-width: 1920px)";
xsOrUp: "(max-width: 0px)";
smOrUp: "(min-width: 640px)";
mdOrUp: "(min-width: 920px)";
lgOrUp: "(min-width: 1280px)";
xlOrUp: "(min-width: 1920px)";
}, import("@stitches/react/types/css-util").CSS<{
mobile: "(max-width: 640px)";
tablet: "(min-width: 640px) and (max-width: 920px)";
desktop: "(min-width: 920px)";
xs: "(max-width: 640px)";
sm: "(min-width: 640px) and (max-width: 920px)";
md: "(min-width: 920px) and (max-width: 1280px)";
lg: "(min-width: 1280px) and (max-width: 1920px)";
xl: "(min-width: 1920px)";
xsOrUp: "(max-width: 0px)";
smOrUp: "(min-width: 640px)";
mdOrUp: "(min-width: 920px)";
lgOrUp: "(min-width: 1280px)";
xlOrUp: "(min-width: 1920px)";
}, {
rgb: {
background: string;
foreground: string;
accents_min: string;
accents_0: string;
accents_1: string;
accents_2: string;
accents_3: string;
accents_4: string;
accents_5: string;
accents_6: string;
accents_7: string;
accents_8: string;
accents_9: string;
accents_max: string;
minors_min: string;
minors_0: string;
minors_1: string;
minors_2: string;
minors_3: string;
minors_4: string;
minors_5: string;
minors_6: string;
minors_7: string;
minors_8: string;
minors_9: string;
minors_max: string;
warning: string;
warningLight: string;
warningLighter: string;
warningDark: string;
success: string;
successLight: string;
successLighter: string;
successDark: string;
error: string;
errorLight: string;
errorLighter: string;
errorDark: string;
info: string;
infoLight: string;
infoLighter: string;
infoDark: string;
violet: string;
yellow: string;
tomato: string;
green: string;
purple: string;
elevation_1: string;
elevation_2: string;
elevation_3: string;
overlay_1: string;
overlay_2: string;
};
colors: {
background: string;
foreground: string;
accents_min: string;
accents_0: string;
accents_1: string;
accents_2: string;
accents_3: string;
accents_4: string;
accents_5: string;
accents_6: string;
accents_7: string;
accents_8: string;
accents_9: string;
accents_max: string;
minors_min: string;
minors_0: string;
minors_1: string;
minors_2: string;
minors_3: string;
minors_4: string;
minors_5: string;
minors_6: string;
minors_7: string;
minors_8: string;
minors_9: string;
minors_max: string;
warning: string;
warningLight: string;
warningLighter: string;
warningDark: string;
success: string;
successLight: string;
successLighter: string;
successDark: string;
error: string;
errorLight: string;
errorLighter: string;
errorDark: string;
info: string;
infoLight: string;
infoLighter: string;
infoDark: string;
violet: string;
yellow: string;
tomato: string;
green: string;
purple: string;
elevation_1: string;
elevation_2: string;
elevation_3: string;
overlay_1: string;
overlay_2: string;
};
fonts: {
sans: string;
mono: string;
prism: string;
};
space: {
unit: string;
gap: string;
gapNegative: string;
gapHalf: string;
gapHalfNegative: string;
gapQuarter: string;
gapQuarterNegative: string;
};
radii: {
mini: string;
small: string;
normal: string;
medium: string;
large: string;
half: string;
max: string;
};
shadows: {
tiny: string;
small: string;
medium: string;
normal: string;
large: string;
};
fontSizes: {
mini: string;
small: string;
base: string;
double: string;
};
}, import("@stitches/react/types/config").DefaultThemeMap, {}>>;
export declare function Skeleton(WrappedComponent: React.FC): React.FC;
export declare const Rect: ({ css }: SkeletonProps) => JSX.Element;
export declare const Avatar: (props: React.CSSProperties) => JSX.Element;