/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * */ import type { TStyleValue } from '../common-types'; type TReturn = ReadonlyArray<[string, TStyleValue]>; declare const shorthands: Readonly<{ [key: string]: ($$PARAM_0$$: TStyleValue) => TReturn; }>; declare const aliases: { borderHorizontal: typeof shorthands.borderInline; borderVertical: typeof shorthands.borderBlock; borderBlockStart: typeof shorthands.borderTop; borderEnd: typeof shorthands.borderInlineEnd; borderBlockEnd: typeof shorthands.borderBottom; borderStart: typeof shorthands.borderInlineStart; blockSize: (val: TStyleValue) => TReturn; inlineSize: (val: TStyleValue) => TReturn; minBlockSize: (val: TStyleValue) => TReturn; minInlineSize: (val: TStyleValue) => TReturn; maxBlockSize: (val: TStyleValue) => TReturn; maxInlineSize: (val: TStyleValue) => TReturn; borderHorizontalWidth: (val: TStyleValue) => TReturn; borderHorizontalStyle: (val: TStyleValue) => TReturn; borderHorizontalColor: (val: TStyleValue) => TReturn; borderVerticalWidth: (val: TStyleValue) => TReturn; borderVerticalStyle: (val: TStyleValue) => TReturn; borderVerticalColor: (val: TStyleValue) => TReturn; borderBlockStartColor: (value: TStyleValue) => TReturn; borderBlockEndColor: (value: TStyleValue) => TReturn; borderBlockStartStyle: (value: TStyleValue) => TReturn; borderBlockEndStyle: (value: TStyleValue) => TReturn; borderBlockStartWidth: (value: TStyleValue) => TReturn; borderBlockEndWidth: (value: TStyleValue) => TReturn; borderStartColor: (val: TStyleValue) => TReturn; borderEndColor: (val: TStyleValue) => TReturn; borderStartStyle: (val: TStyleValue) => TReturn; borderEndStyle: (val: TStyleValue) => TReturn; borderStartWidth: (val: TStyleValue) => TReturn; borderEndWidth: (val: TStyleValue) => TReturn; borderTopStartRadius: (value: TStyleValue) => TReturn; borderTopEndRadius: (value: TStyleValue) => TReturn; borderBottomStartRadius: (value: TStyleValue) => TReturn; borderBottomEndRadius: (value: TStyleValue) => TReturn; containIntrinsicBlockSize: (value: TStyleValue) => TReturn; containIntrinsicInlineSize: (value: TStyleValue) => TReturn; marginBlockStart: (value: TStyleValue) => TReturn; marginBlockEnd: (value: TStyleValue) => TReturn; marginStart: (val: TStyleValue) => TReturn; marginEnd: (val: TStyleValue) => TReturn; marginHorizontal: (val: TStyleValue) => TReturn; marginVertical: (val: TStyleValue) => TReturn; overflowBlock: (value: TStyleValue) => TReturn; overflowInline: (value: TStyleValue) => TReturn; paddingBlockStart: (rawValue: TStyleValue) => TReturn; paddingBlockEnd: (rawValue: TStyleValue) => TReturn; paddingStart: (val: TStyleValue) => TReturn; paddingEnd: (val: TStyleValue) => TReturn; paddingHorizontal: (val: TStyleValue) => TReturn; paddingVertical: (val: TStyleValue) => TReturn; scrollMarginBlockStart: (value: TStyleValue) => TReturn; scrollMarginBlockEnd: (value: TStyleValue) => TReturn; insetBlockStart: (value: TStyleValue) => TReturn; insetBlockEnd: (value: TStyleValue) => TReturn; start: (val: TStyleValue) => TReturn; end: (val: TStyleValue) => TReturn; }; declare const $$EXPORT_DEFAULT_DECLARATION$$: Readonly< Omit & Omit & {} >; declare type $$EXPORT_DEFAULT_DECLARATION$$ = typeof $$EXPORT_DEFAULT_DECLARATION$$; export default $$EXPORT_DEFAULT_DECLARATION$$;