import type { BezierComponentProps, SizeProps } from "../../types/props"; export type StatusType = 'online' | 'offline' | 'lock' | 'online-crescent' | 'offline-crescent'; export type StatusSize = 'm' | 'l'; interface StatusOwnProps { /** * Type of Status image. */ type: StatusType; } export interface StatusProps extends BezierComponentProps<'div'>, SizeProps, StatusOwnProps { } export {}; //# sourceMappingURL=Status.types.d.ts.map