export { FocusRingStyle, Optional, SomeRequired } from '../types/utils'; /** * Makes specified properties optional. * * @example * ``` * type PartialAlertProps = SomeOptional * ``` */ export type SomeOptional = Omit & Partial>; /** * Use this function to mark conditions which should never be visited */ export declare function assertNever(_value: never): null;