import type { StateProps as StateNewProps, StateStatus } from './State'; export type StateKind = StateStatus; export interface OldStateProps extends Omit { /** @deprecated status를 대신 사용해주세요. */ kind?: StateKind; } export declare function convertOldStateProps(props: OldStateProps): StateNewProps;