index.vue.d.ts 334 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977
  1. import { IconPropType } from "../../../utils/vue/icon.js";
  2. import { SFCWithInstall } from "../../../utils/vue/typescript.js";
  3. import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js";
  4. import { ComponentSize } from "../../../constants/size.js";
  5. import { Translator } from "../../../hooks/use-locale/index.js";
  6. import { InputAutoSize, InputModelModifiers, InputProps, InputType } from "../../input/src/input.js";
  7. import { InputInstance } from "../../input/src/instance.js";
  8. import { ButtonNativeType, ButtonProps, ButtonType } from "../../button/src/button.js";
  9. import _default$1 from "../../button/src/button-group.vue.js";
  10. import { IconProps } from "../../icon/src/icon.js";
  11. import { Action, Callback, MessageBoxInputValidator, MessageBoxState, MessageBoxType } from "./message-box.type.js";
  12. import * as _$vue from "vue";
  13. import { ComponentPublicInstance, PropType } from "vue";
  14. import * as _$csstype from "csstype";
  15. import * as _$_vue_shared0 from "@vue/shared";
  16. import * as _$vue_router0 from "vue-router";
  17. //#region ../../packages/components/message-box/src/index.vue.d.ts
  18. declare const _default: typeof __VLS_export;
  19. declare const __VLS_export: _$vue.DefineComponent<_$vue.ExtractPropTypes<{
  20. buttonSize: {
  21. type: PropType<ComponentSize>;
  22. validator: (val: string) => val is ComponentSize | "";
  23. };
  24. modal: {
  25. type: BooleanConstructor;
  26. default: boolean;
  27. };
  28. lockScroll: {
  29. type: BooleanConstructor;
  30. default: boolean;
  31. };
  32. showClose: {
  33. type: BooleanConstructor;
  34. default: boolean;
  35. };
  36. closeOnClickModal: {
  37. type: BooleanConstructor;
  38. default: boolean;
  39. };
  40. closeOnPressEscape: {
  41. type: BooleanConstructor;
  42. default: boolean;
  43. };
  44. closeOnHashChange: {
  45. type: BooleanConstructor;
  46. default: boolean;
  47. };
  48. center: BooleanConstructor;
  49. draggable: BooleanConstructor;
  50. overflow: BooleanConstructor;
  51. roundButton: BooleanConstructor;
  52. container: {
  53. type: StringConstructor;
  54. default: string;
  55. };
  56. boxType: {
  57. type: PropType<MessageBoxType>;
  58. default: string;
  59. };
  60. }>, {
  61. ns: {
  62. namespace: _$vue.ComputedRef<string>;
  63. b: (blockSuffix?: string) => string;
  64. e: (element?: string) => string;
  65. m: (modifier?: string) => string;
  66. be: (blockSuffix?: string, element?: string) => string;
  67. em: (element?: string, modifier?: string) => string;
  68. bm: (blockSuffix?: string, modifier?: string) => string;
  69. bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
  70. is: {
  71. (name: string, state: boolean | undefined): string;
  72. (name: string): string;
  73. };
  74. cssVar: (object: Record<string, string>) => Record<string, string>;
  75. cssVarName: (name: string) => string;
  76. cssVarBlock: (object: Record<string, string>) => Record<string, string>;
  77. cssVarBlockName: (name: string) => string;
  78. };
  79. overlayEvent: {
  80. onClick: (e: MouseEvent) => void;
  81. onMousedown: (e: MouseEvent) => void;
  82. onMouseup: (e: MouseEvent) => void;
  83. };
  84. visible: _$vue.Ref<boolean, boolean>;
  85. hasMessage: _$vue.ComputedRef<boolean>;
  86. typeClass: _$vue.ComputedRef<{
  87. [x: string]: "" | _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  88. }>;
  89. contentId: _$vue.Ref<string, string>;
  90. inputId: _$vue.Ref<string, string>;
  91. btnSize: _$vue.ComputedRef<"" | "default" | "small" | "large">;
  92. iconComponent: _$vue.ComputedRef<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  93. new (...args: any[]): any;
  94. __isFragment?: never;
  95. __isTeleport?: never;
  96. __isSuspense?: never;
  97. } | {
  98. [x: string]: any;
  99. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  100. attrs: {
  101. [x: string]: unknown;
  102. };
  103. slots: Readonly<{
  104. [name: string]: _$vue.Slot<any> | undefined;
  105. }>;
  106. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  107. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  108. }) => any) | undefined;
  109. name?: string | undefined;
  110. template?: string | object | undefined;
  111. render?: Function | undefined;
  112. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  113. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  114. inheritAttrs?: boolean | undefined;
  115. emits?: any;
  116. slots?: {} | undefined;
  117. expose?: string[] | undefined;
  118. serverPrefetch?: (() => void | Promise<any>) | undefined;
  119. compilerOptions?: {
  120. isCustomElement?: ((tag: string) => boolean) | undefined;
  121. whitespace?: "preserve" | "condense" | undefined;
  122. comments?: boolean | undefined;
  123. delimiters?: [string, string] | undefined;
  124. } | undefined;
  125. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  126. __isFragment?: never | undefined;
  127. __isTeleport?: never | undefined;
  128. __isSuspense?: never | undefined;
  129. __defaults?: {} | undefined;
  130. compatConfig?: {
  131. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  132. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  133. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  134. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  135. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  136. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  137. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  138. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  139. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  140. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  141. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  142. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  143. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  144. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  145. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  146. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  147. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  148. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  149. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  150. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  151. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  152. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  153. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  154. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  155. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  156. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  157. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  158. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  159. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  160. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  161. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  162. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  163. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  164. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  165. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  166. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  167. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  168. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  169. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  170. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  171. FILTERS?: boolean | "suppress-warning" | undefined;
  172. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  173. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  174. } | undefined;
  175. data?: ((this: any, vm: any) => any) | undefined;
  176. computed?: _$vue.ComputedOptions | undefined;
  177. methods?: _$vue.MethodOptions | undefined;
  178. watch?: {
  179. [x: string]: (string | _$vue.WatchCallback | ({
  180. handler: _$vue.WatchCallback | string;
  181. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  182. handler: _$vue.WatchCallback | string;
  183. } & _$vue.WatchOptions<boolean>))[];
  184. } | undefined;
  185. provide?: _$vue.ComponentProvideOptions | undefined;
  186. inject?: {} | string[] | undefined;
  187. filters?: Record<string, Function> | undefined;
  188. mixins?: any[] | undefined;
  189. extends?: any;
  190. beforeCreate?: (() => any) | undefined;
  191. created?: (() => any) | undefined;
  192. beforeMount?: (() => any) | undefined;
  193. mounted?: (() => any) | undefined;
  194. beforeUpdate?: (() => any) | undefined;
  195. updated?: (() => any) | undefined;
  196. activated?: (() => any) | undefined;
  197. deactivated?: (() => any) | undefined;
  198. beforeDestroy?: (() => any) | undefined;
  199. beforeUnmount?: (() => any) | undefined;
  200. destroyed?: (() => any) | undefined;
  201. unmounted?: (() => any) | undefined;
  202. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  203. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  204. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  205. delimiters?: [string, string] | undefined;
  206. __differentiator?: string | number | symbol | undefined;
  207. __isBuiltIn?: boolean | undefined;
  208. __file?: string | undefined;
  209. __name?: string | undefined;
  210. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  211. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  212. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  213. }>;
  214. confirmButtonClasses: _$vue.ComputedRef<string>;
  215. rootRef: _$vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
  216. focusStartRef: _$vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
  217. headerRef: _$vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
  218. inputRef: _$vue.Ref<InputInstance | undefined, InputInstance | undefined>;
  219. isDragging: _$vue.Ref<boolean, boolean>;
  220. confirmRef: _$vue.Ref<ComponentPublicInstance | undefined, ComponentPublicInstance | undefined>;
  221. doClose: () => void;
  222. handleClose: () => void;
  223. onCloseRequested: () => void;
  224. handleWrapperClick: () => void;
  225. handleInputEnter: (e: KeyboardEvent | Event) => void;
  226. handleAction: (action: Action) => void;
  227. t: Translator;
  228. autofocus: _$vue.Ref<boolean, boolean>;
  229. title: _$vue.Ref<string | undefined, string | undefined>;
  230. message: _$vue.Ref<string, string>;
  231. type: _$vue.Ref<"" | "info" | "primary" | "success" | "warning" | "error", "" | "info" | "primary" | "success" | "warning" | "error">;
  232. icon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  233. new (...args: any[]): any;
  234. __isFragment?: never;
  235. __isTeleport?: never;
  236. __isSuspense?: never;
  237. } | {
  238. [x: string]: any;
  239. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  240. attrs: {
  241. [x: string]: unknown;
  242. };
  243. slots: Readonly<{
  244. [name: string]: _$vue.Slot<any> | undefined;
  245. }>;
  246. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  247. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  248. }) => any) | undefined;
  249. name?: string | undefined;
  250. template?: string | object | undefined;
  251. render?: Function | undefined;
  252. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  253. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  254. inheritAttrs?: boolean | undefined;
  255. emits?: any;
  256. slots?: {} | undefined;
  257. expose?: string[] | undefined;
  258. serverPrefetch?: (() => void | Promise<any>) | undefined;
  259. compilerOptions?: {
  260. isCustomElement?: ((tag: string) => boolean) | undefined;
  261. whitespace?: "preserve" | "condense" | undefined;
  262. comments?: boolean | undefined;
  263. delimiters?: [string, string] | undefined;
  264. } | undefined;
  265. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  266. __isFragment?: never | undefined;
  267. __isTeleport?: never | undefined;
  268. __isSuspense?: never | undefined;
  269. __defaults?: {} | undefined;
  270. compatConfig?: {
  271. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  272. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  273. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  274. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  275. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  276. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  277. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  278. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  279. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  280. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  281. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  282. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  283. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  284. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  285. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  286. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  287. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  288. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  289. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  290. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  291. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  292. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  293. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  294. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  295. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  296. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  297. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  298. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  299. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  300. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  301. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  302. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  303. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  304. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  305. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  306. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  307. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  308. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  309. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  310. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  311. FILTERS?: boolean | "suppress-warning" | undefined;
  312. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  313. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  314. } | undefined;
  315. data?: ((this: any, vm: any) => any) | undefined;
  316. computed?: _$vue.ComputedOptions | undefined;
  317. methods?: _$vue.MethodOptions | undefined;
  318. watch?: {
  319. [x: string]: (string | _$vue.WatchCallback | ({
  320. handler: _$vue.WatchCallback | string;
  321. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  322. handler: _$vue.WatchCallback | string;
  323. } & _$vue.WatchOptions<boolean>))[];
  324. } | undefined;
  325. provide?: _$vue.ComponentProvideOptions | undefined;
  326. inject?: {} | string[] | undefined;
  327. filters?: Record<string, Function> | undefined;
  328. mixins?: any[] | undefined;
  329. extends?: any;
  330. beforeCreate?: (() => any) | undefined;
  331. created?: (() => any) | undefined;
  332. beforeMount?: (() => any) | undefined;
  333. mounted?: (() => any) | undefined;
  334. beforeUpdate?: (() => any) | undefined;
  335. updated?: (() => any) | undefined;
  336. activated?: (() => any) | undefined;
  337. deactivated?: (() => any) | undefined;
  338. beforeDestroy?: (() => any) | undefined;
  339. beforeUnmount?: (() => any) | undefined;
  340. destroyed?: (() => any) | undefined;
  341. unmounted?: (() => any) | undefined;
  342. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  343. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  344. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  345. delimiters?: [string, string] | undefined;
  346. __differentiator?: string | number | symbol | undefined;
  347. __isBuiltIn?: boolean | undefined;
  348. __file?: string | undefined;
  349. __name?: string | undefined;
  350. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  351. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  352. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  353. }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  354. new (...args: any[]): any;
  355. __isFragment?: never;
  356. __isTeleport?: never;
  357. __isSuspense?: never;
  358. } | {
  359. [x: string]: any;
  360. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  361. attrs: {
  362. [x: string]: unknown;
  363. };
  364. slots: Readonly<{
  365. [name: string]: _$vue.Slot<any> | undefined;
  366. }>;
  367. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  368. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  369. }) => any) | undefined;
  370. name?: string | undefined;
  371. template?: string | object | undefined;
  372. render?: Function | undefined;
  373. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  374. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  375. inheritAttrs?: boolean | undefined;
  376. emits?: any;
  377. slots?: {} | undefined;
  378. expose?: string[] | undefined;
  379. serverPrefetch?: (() => void | Promise<any>) | undefined;
  380. compilerOptions?: {
  381. isCustomElement?: ((tag: string) => boolean) | undefined;
  382. whitespace?: "preserve" | "condense" | undefined;
  383. comments?: boolean | undefined;
  384. delimiters?: [string, string] | undefined;
  385. } | undefined;
  386. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  387. __isFragment?: never | undefined;
  388. __isTeleport?: never | undefined;
  389. __isSuspense?: never | undefined;
  390. __defaults?: {} | undefined;
  391. compatConfig?: {
  392. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  393. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  394. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  395. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  396. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  397. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  398. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  399. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  400. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  401. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  402. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  403. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  404. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  405. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  406. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  407. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  408. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  409. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  410. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  411. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  412. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  413. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  414. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  415. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  416. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  417. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  418. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  419. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  420. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  421. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  422. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  423. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  424. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  425. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  426. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  427. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  428. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  429. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  430. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  431. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  432. FILTERS?: boolean | "suppress-warning" | undefined;
  433. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  434. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  435. } | undefined;
  436. data?: ((this: any, vm: any) => any) | undefined;
  437. computed?: _$vue.ComputedOptions | undefined;
  438. methods?: _$vue.MethodOptions | undefined;
  439. watch?: {
  440. [x: string]: (string | _$vue.WatchCallback | ({
  441. handler: _$vue.WatchCallback | string;
  442. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  443. handler: _$vue.WatchCallback | string;
  444. } & _$vue.WatchOptions<boolean>))[];
  445. } | undefined;
  446. provide?: _$vue.ComponentProvideOptions | undefined;
  447. inject?: {} | string[] | undefined;
  448. filters?: Record<string, Function> | undefined;
  449. mixins?: any[] | undefined;
  450. extends?: any;
  451. beforeCreate?: (() => any) | undefined;
  452. created?: (() => any) | undefined;
  453. beforeMount?: (() => any) | undefined;
  454. mounted?: (() => any) | undefined;
  455. beforeUpdate?: (() => any) | undefined;
  456. updated?: (() => any) | undefined;
  457. activated?: (() => any) | undefined;
  458. deactivated?: (() => any) | undefined;
  459. beforeDestroy?: (() => any) | undefined;
  460. beforeUnmount?: (() => any) | undefined;
  461. destroyed?: (() => any) | undefined;
  462. unmounted?: (() => any) | undefined;
  463. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  464. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  465. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  466. delimiters?: [string, string] | undefined;
  467. __differentiator?: string | number | symbol | undefined;
  468. __isBuiltIn?: boolean | undefined;
  469. __file?: string | undefined;
  470. __name?: string | undefined;
  471. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  472. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  473. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  474. }>;
  475. closeIcon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  476. new (...args: any[]): any;
  477. __isFragment?: never;
  478. __isTeleport?: never;
  479. __isSuspense?: never;
  480. } | {
  481. [x: string]: any;
  482. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  483. attrs: {
  484. [x: string]: unknown;
  485. };
  486. slots: Readonly<{
  487. [name: string]: _$vue.Slot<any> | undefined;
  488. }>;
  489. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  490. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  491. }) => any) | undefined;
  492. name?: string | undefined;
  493. template?: string | object | undefined;
  494. render?: Function | undefined;
  495. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  496. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  497. inheritAttrs?: boolean | undefined;
  498. emits?: any;
  499. slots?: {} | undefined;
  500. expose?: string[] | undefined;
  501. serverPrefetch?: (() => void | Promise<any>) | undefined;
  502. compilerOptions?: {
  503. isCustomElement?: ((tag: string) => boolean) | undefined;
  504. whitespace?: "preserve" | "condense" | undefined;
  505. comments?: boolean | undefined;
  506. delimiters?: [string, string] | undefined;
  507. } | undefined;
  508. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  509. __isFragment?: never | undefined;
  510. __isTeleport?: never | undefined;
  511. __isSuspense?: never | undefined;
  512. __defaults?: {} | undefined;
  513. compatConfig?: {
  514. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  515. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  516. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  517. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  518. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  519. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  520. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  521. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  522. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  523. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  524. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  525. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  526. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  527. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  528. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  529. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  530. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  531. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  532. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  533. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  534. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  535. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  536. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  537. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  538. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  539. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  540. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  541. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  542. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  543. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  544. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  545. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  546. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  547. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  548. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  549. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  550. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  551. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  552. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  553. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  554. FILTERS?: boolean | "suppress-warning" | undefined;
  555. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  556. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  557. } | undefined;
  558. data?: ((this: any, vm: any) => any) | undefined;
  559. computed?: _$vue.ComputedOptions | undefined;
  560. methods?: _$vue.MethodOptions | undefined;
  561. watch?: {
  562. [x: string]: (string | _$vue.WatchCallback | ({
  563. handler: _$vue.WatchCallback | string;
  564. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  565. handler: _$vue.WatchCallback | string;
  566. } & _$vue.WatchOptions<boolean>))[];
  567. } | undefined;
  568. provide?: _$vue.ComponentProvideOptions | undefined;
  569. inject?: {} | string[] | undefined;
  570. filters?: Record<string, Function> | undefined;
  571. mixins?: any[] | undefined;
  572. extends?: any;
  573. beforeCreate?: (() => any) | undefined;
  574. created?: (() => any) | undefined;
  575. beforeMount?: (() => any) | undefined;
  576. mounted?: (() => any) | undefined;
  577. beforeUpdate?: (() => any) | undefined;
  578. updated?: (() => any) | undefined;
  579. activated?: (() => any) | undefined;
  580. deactivated?: (() => any) | undefined;
  581. beforeDestroy?: (() => any) | undefined;
  582. beforeUnmount?: (() => any) | undefined;
  583. destroyed?: (() => any) | undefined;
  584. unmounted?: (() => any) | undefined;
  585. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  586. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  587. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  588. delimiters?: [string, string] | undefined;
  589. __differentiator?: string | number | symbol | undefined;
  590. __isBuiltIn?: boolean | undefined;
  591. __file?: string | undefined;
  592. __name?: string | undefined;
  593. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  594. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  595. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  596. }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  597. new (...args: any[]): any;
  598. __isFragment?: never;
  599. __isTeleport?: never;
  600. __isSuspense?: never;
  601. } | {
  602. [x: string]: any;
  603. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  604. attrs: {
  605. [x: string]: unknown;
  606. };
  607. slots: Readonly<{
  608. [name: string]: _$vue.Slot<any> | undefined;
  609. }>;
  610. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  611. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  612. }) => any) | undefined;
  613. name?: string | undefined;
  614. template?: string | object | undefined;
  615. render?: Function | undefined;
  616. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  617. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  618. inheritAttrs?: boolean | undefined;
  619. emits?: any;
  620. slots?: {} | undefined;
  621. expose?: string[] | undefined;
  622. serverPrefetch?: (() => void | Promise<any>) | undefined;
  623. compilerOptions?: {
  624. isCustomElement?: ((tag: string) => boolean) | undefined;
  625. whitespace?: "preserve" | "condense" | undefined;
  626. comments?: boolean | undefined;
  627. delimiters?: [string, string] | undefined;
  628. } | undefined;
  629. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  630. __isFragment?: never | undefined;
  631. __isTeleport?: never | undefined;
  632. __isSuspense?: never | undefined;
  633. __defaults?: {} | undefined;
  634. compatConfig?: {
  635. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  636. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  637. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  638. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  639. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  640. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  641. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  642. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  643. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  644. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  645. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  646. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  647. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  648. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  649. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  650. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  651. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  652. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  653. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  654. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  655. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  656. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  657. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  658. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  659. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  660. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  661. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  662. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  663. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  664. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  665. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  666. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  667. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  668. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  669. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  670. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  671. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  672. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  673. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  674. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  675. FILTERS?: boolean | "suppress-warning" | undefined;
  676. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  677. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  678. } | undefined;
  679. data?: ((this: any, vm: any) => any) | undefined;
  680. computed?: _$vue.ComputedOptions | undefined;
  681. methods?: _$vue.MethodOptions | undefined;
  682. watch?: {
  683. [x: string]: (string | _$vue.WatchCallback | ({
  684. handler: _$vue.WatchCallback | string;
  685. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  686. handler: _$vue.WatchCallback | string;
  687. } & _$vue.WatchOptions<boolean>))[];
  688. } | undefined;
  689. provide?: _$vue.ComponentProvideOptions | undefined;
  690. inject?: {} | string[] | undefined;
  691. filters?: Record<string, Function> | undefined;
  692. mixins?: any[] | undefined;
  693. extends?: any;
  694. beforeCreate?: (() => any) | undefined;
  695. created?: (() => any) | undefined;
  696. beforeMount?: (() => any) | undefined;
  697. mounted?: (() => any) | undefined;
  698. beforeUpdate?: (() => any) | undefined;
  699. updated?: (() => any) | undefined;
  700. activated?: (() => any) | undefined;
  701. deactivated?: (() => any) | undefined;
  702. beforeDestroy?: (() => any) | undefined;
  703. beforeUnmount?: (() => any) | undefined;
  704. destroyed?: (() => any) | undefined;
  705. unmounted?: (() => any) | undefined;
  706. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  707. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  708. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  709. delimiters?: [string, string] | undefined;
  710. __differentiator?: string | number | symbol | undefined;
  711. __isBuiltIn?: boolean | undefined;
  712. __file?: string | undefined;
  713. __name?: string | undefined;
  714. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  715. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  716. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  717. }>;
  718. customClass: _$vue.Ref<string, string>;
  719. customStyle: _$vue.Ref<{
  720. [x: `--${string}`]: string | number | undefined;
  721. accentColor?: _$csstype.Property.AccentColor | undefined;
  722. alignContent?: _$csstype.Property.AlignContent | undefined;
  723. alignItems?: _$csstype.Property.AlignItems | undefined;
  724. alignSelf?: _$csstype.Property.AlignSelf | undefined;
  725. alignTracks?: _$csstype.Property.AlignTracks | undefined;
  726. alignmentBaseline?: _$csstype.Property.AlignmentBaseline | undefined;
  727. anchorName?: _$csstype.Property.AnchorName | undefined;
  728. anchorScope?: _$csstype.Property.AnchorScope | undefined;
  729. animationComposition?: _$csstype.Property.AnimationComposition | undefined;
  730. animationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  731. animationDirection?: _$csstype.Property.AnimationDirection | undefined;
  732. animationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  733. animationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  734. animationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  735. animationName?: _$csstype.Property.AnimationName | undefined;
  736. animationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  737. animationRangeEnd?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
  738. animationRangeStart?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
  739. animationTimeline?: _$csstype.Property.AnimationTimeline | undefined;
  740. animationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  741. appearance?: _$csstype.Property.Appearance | undefined;
  742. aspectRatio?: _$csstype.Property.AspectRatio | undefined;
  743. backdropFilter?: _$csstype.Property.BackdropFilter | undefined;
  744. backfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
  745. backgroundAttachment?: _$csstype.Property.BackgroundAttachment | undefined;
  746. backgroundBlendMode?: _$csstype.Property.BackgroundBlendMode | undefined;
  747. backgroundClip?: _$csstype.Property.BackgroundClip | undefined;
  748. backgroundColor?: _$csstype.Property.BackgroundColor | undefined;
  749. backgroundImage?: _$csstype.Property.BackgroundImage | undefined;
  750. backgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
  751. backgroundPositionX?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
  752. backgroundPositionY?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
  753. backgroundRepeat?: _$csstype.Property.BackgroundRepeat | undefined;
  754. backgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  755. baselineShift?: _$csstype.Property.BaselineShift<string | number> | undefined;
  756. blockSize?: _$csstype.Property.BlockSize<string | number> | undefined;
  757. borderBlockEndColor?: _$csstype.Property.BorderBlockEndColor | undefined;
  758. borderBlockEndStyle?: _$csstype.Property.BorderBlockEndStyle | undefined;
  759. borderBlockEndWidth?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
  760. borderBlockStartColor?: _$csstype.Property.BorderBlockStartColor | undefined;
  761. borderBlockStartStyle?: _$csstype.Property.BorderBlockStartStyle | undefined;
  762. borderBlockStartWidth?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
  763. borderBottomColor?: _$csstype.Property.BorderBottomColor | undefined;
  764. borderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  765. borderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  766. borderBottomStyle?: _$csstype.Property.BorderBottomStyle | undefined;
  767. borderBottomWidth?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
  768. borderCollapse?: _$csstype.Property.BorderCollapse | undefined;
  769. borderEndEndRadius?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
  770. borderEndStartRadius?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
  771. borderImageOutset?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
  772. borderImageRepeat?: _$csstype.Property.BorderImageRepeat | undefined;
  773. borderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
  774. borderImageSource?: _$csstype.Property.BorderImageSource | undefined;
  775. borderImageWidth?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
  776. borderInlineEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
  777. borderInlineEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
  778. borderInlineEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  779. borderInlineStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
  780. borderInlineStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
  781. borderInlineStartWidth?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
  782. borderLeftColor?: _$csstype.Property.BorderLeftColor | undefined;
  783. borderLeftStyle?: _$csstype.Property.BorderLeftStyle | undefined;
  784. borderLeftWidth?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
  785. borderRightColor?: _$csstype.Property.BorderRightColor | undefined;
  786. borderRightStyle?: _$csstype.Property.BorderRightStyle | undefined;
  787. borderRightWidth?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
  788. borderSpacing?: _$csstype.Property.BorderSpacing<string | number> | undefined;
  789. borderStartEndRadius?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
  790. borderStartStartRadius?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
  791. borderTopColor?: _$csstype.Property.BorderTopColor | undefined;
  792. borderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  793. borderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  794. borderTopStyle?: _$csstype.Property.BorderTopStyle | undefined;
  795. borderTopWidth?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
  796. bottom?: _$csstype.Property.Bottom<string | number> | undefined;
  797. boxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
  798. boxShadow?: _$csstype.Property.BoxShadow | undefined;
  799. boxSizing?: _$csstype.Property.BoxSizing | undefined;
  800. breakAfter?: _$csstype.Property.BreakAfter | undefined;
  801. breakBefore?: _$csstype.Property.BreakBefore | undefined;
  802. breakInside?: _$csstype.Property.BreakInside | undefined;
  803. captionSide?: _$csstype.Property.CaptionSide | undefined;
  804. caretColor?: _$csstype.Property.CaretColor | undefined;
  805. caretShape?: _$csstype.Property.CaretShape | undefined;
  806. clear?: _$csstype.Property.Clear | undefined;
  807. clipPath?: _$csstype.Property.ClipPath | undefined;
  808. clipRule?: _$csstype.Property.ClipRule | undefined;
  809. color?: _$csstype.Property.Color | undefined;
  810. colorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
  811. colorInterpolationFilters?: _$csstype.Property.ColorInterpolationFilters | undefined;
  812. colorScheme?: _$csstype.Property.ColorScheme | undefined;
  813. columnCount?: _$csstype.Property.ColumnCount | undefined;
  814. columnFill?: _$csstype.Property.ColumnFill | undefined;
  815. columnGap?: _$csstype.Property.ColumnGap<string | number> | undefined;
  816. columnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
  817. columnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
  818. columnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  819. columnSpan?: _$csstype.Property.ColumnSpan | undefined;
  820. columnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  821. contain?: _$csstype.Property.Contain | undefined;
  822. containIntrinsicBlockSize?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
  823. containIntrinsicHeight?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
  824. containIntrinsicInlineSize?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
  825. containIntrinsicWidth?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
  826. containerName?: _$csstype.Property.ContainerName | undefined;
  827. containerType?: _$csstype.Property.ContainerType | undefined;
  828. content?: _$csstype.Property.Content | undefined;
  829. contentVisibility?: _$csstype.Property.ContentVisibility | undefined;
  830. counterIncrement?: _$csstype.Property.CounterIncrement | undefined;
  831. counterReset?: _$csstype.Property.CounterReset | undefined;
  832. counterSet?: _$csstype.Property.CounterSet | undefined;
  833. cursor?: _$csstype.Property.Cursor | undefined;
  834. cx?: _$csstype.Property.Cx<string | number> | undefined;
  835. cy?: _$csstype.Property.Cy<string | number> | undefined;
  836. d?: _$csstype.Property.D | undefined;
  837. direction?: _$csstype.Property.Direction | undefined;
  838. display?: _$csstype.Property.Display | undefined;
  839. dominantBaseline?: _$csstype.Property.DominantBaseline | undefined;
  840. emptyCells?: _$csstype.Property.EmptyCells | undefined;
  841. fieldSizing?: _$csstype.Property.FieldSizing | undefined;
  842. fill?: _$csstype.Property.Fill | undefined;
  843. fillOpacity?: _$csstype.Property.FillOpacity | undefined;
  844. fillRule?: _$csstype.Property.FillRule | undefined;
  845. filter?: _$csstype.Property.Filter | undefined;
  846. flexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
  847. flexDirection?: _$csstype.Property.FlexDirection | undefined;
  848. flexGrow?: _$csstype.Property.FlexGrow | undefined;
  849. flexShrink?: _$csstype.Property.FlexShrink | undefined;
  850. flexWrap?: _$csstype.Property.FlexWrap | undefined;
  851. float?: _$csstype.Property.Float | undefined;
  852. floodColor?: _$csstype.Property.FloodColor | undefined;
  853. floodOpacity?: _$csstype.Property.FloodOpacity | undefined;
  854. fontFamily?: _$csstype.Property.FontFamily | undefined;
  855. fontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
  856. fontKerning?: _$csstype.Property.FontKerning | undefined;
  857. fontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
  858. fontOpticalSizing?: _$csstype.Property.FontOpticalSizing | undefined;
  859. fontPalette?: _$csstype.Property.FontPalette | undefined;
  860. fontSize?: _$csstype.Property.FontSize<string | number> | undefined;
  861. fontSizeAdjust?: _$csstype.Property.FontSizeAdjust | undefined;
  862. fontSmooth?: _$csstype.Property.FontSmooth<string | number> | undefined;
  863. fontStyle?: _$csstype.Property.FontStyle | undefined;
  864. fontSynthesis?: _$csstype.Property.FontSynthesis | undefined;
  865. fontSynthesisPosition?: _$csstype.Property.FontSynthesisPosition | undefined;
  866. fontSynthesisSmallCaps?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
  867. fontSynthesisStyle?: _$csstype.Property.FontSynthesisStyle | undefined;
  868. fontSynthesisWeight?: _$csstype.Property.FontSynthesisWeight | undefined;
  869. fontVariant?: _$csstype.Property.FontVariant | undefined;
  870. fontVariantAlternates?: _$csstype.Property.FontVariantAlternates | undefined;
  871. fontVariantCaps?: _$csstype.Property.FontVariantCaps | undefined;
  872. fontVariantEastAsian?: _$csstype.Property.FontVariantEastAsian | undefined;
  873. fontVariantEmoji?: _$csstype.Property.FontVariantEmoji | undefined;
  874. fontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
  875. fontVariantNumeric?: _$csstype.Property.FontVariantNumeric | undefined;
  876. fontVariantPosition?: _$csstype.Property.FontVariantPosition | undefined;
  877. fontVariationSettings?: _$csstype.Property.FontVariationSettings | undefined;
  878. fontWeight?: _$csstype.Property.FontWeight | undefined;
  879. fontWidth?: _$csstype.Property.FontWidth | undefined;
  880. forcedColorAdjust?: _$csstype.Property.ForcedColorAdjust | undefined;
  881. gridAutoColumns?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
  882. gridAutoFlow?: _$csstype.Property.GridAutoFlow | undefined;
  883. gridAutoRows?: _$csstype.Property.GridAutoRows<string | number> | undefined;
  884. gridColumnEnd?: _$csstype.Property.GridColumnEnd | undefined;
  885. gridColumnStart?: _$csstype.Property.GridColumnStart | undefined;
  886. gridRowEnd?: _$csstype.Property.GridRowEnd | undefined;
  887. gridRowStart?: _$csstype.Property.GridRowStart | undefined;
  888. gridTemplateAreas?: _$csstype.Property.GridTemplateAreas | undefined;
  889. gridTemplateColumns?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
  890. gridTemplateRows?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
  891. hangingPunctuation?: _$csstype.Property.HangingPunctuation | undefined;
  892. height?: _$csstype.Property.Height<string | number> | undefined;
  893. hyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
  894. hyphenateLimitChars?: _$csstype.Property.HyphenateLimitChars | undefined;
  895. hyphens?: _$csstype.Property.Hyphens | undefined;
  896. imageOrientation?: _$csstype.Property.ImageOrientation | undefined;
  897. imageRendering?: _$csstype.Property.ImageRendering | undefined;
  898. imageResolution?: _$csstype.Property.ImageResolution | undefined;
  899. initialLetter?: _$csstype.Property.InitialLetter | undefined;
  900. initialLetterAlign?: _$csstype.Property.InitialLetterAlign | undefined;
  901. inlineSize?: _$csstype.Property.InlineSize<string | number> | undefined;
  902. insetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  903. insetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  904. insetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  905. insetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  906. interpolateSize?: _$csstype.Property.InterpolateSize | undefined;
  907. isolation?: _$csstype.Property.Isolation | undefined;
  908. justifyContent?: _$csstype.Property.JustifyContent | undefined;
  909. justifyItems?: _$csstype.Property.JustifyItems | undefined;
  910. justifySelf?: _$csstype.Property.JustifySelf | undefined;
  911. justifyTracks?: _$csstype.Property.JustifyTracks | undefined;
  912. left?: _$csstype.Property.Left<string | number> | undefined;
  913. letterSpacing?: _$csstype.Property.LetterSpacing<string | number> | undefined;
  914. lightingColor?: _$csstype.Property.LightingColor | undefined;
  915. lineBreak?: _$csstype.Property.LineBreak | undefined;
  916. lineHeight?: _$csstype.Property.LineHeight<string | number> | undefined;
  917. lineHeightStep?: _$csstype.Property.LineHeightStep<string | number> | undefined;
  918. listStyleImage?: _$csstype.Property.ListStyleImage | undefined;
  919. listStylePosition?: _$csstype.Property.ListStylePosition | undefined;
  920. listStyleType?: _$csstype.Property.ListStyleType | undefined;
  921. marginBlockEnd?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
  922. marginBlockStart?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
  923. marginBottom?: _$csstype.Property.MarginBottom<string | number> | undefined;
  924. marginInlineEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  925. marginInlineStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  926. marginLeft?: _$csstype.Property.MarginLeft<string | number> | undefined;
  927. marginRight?: _$csstype.Property.MarginRight<string | number> | undefined;
  928. marginTop?: _$csstype.Property.MarginTop<string | number> | undefined;
  929. marginTrim?: _$csstype.Property.MarginTrim | undefined;
  930. marker?: _$csstype.Property.Marker | undefined;
  931. markerEnd?: _$csstype.Property.MarkerEnd | undefined;
  932. markerMid?: _$csstype.Property.MarkerMid | undefined;
  933. markerStart?: _$csstype.Property.MarkerStart | undefined;
  934. maskBorderMode?: _$csstype.Property.MaskBorderMode | undefined;
  935. maskBorderOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  936. maskBorderRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
  937. maskBorderSlice?: _$csstype.Property.MaskBorderSlice | undefined;
  938. maskBorderSource?: _$csstype.Property.MaskBorderSource | undefined;
  939. maskBorderWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  940. maskClip?: _$csstype.Property.MaskClip | undefined;
  941. maskComposite?: _$csstype.Property.MaskComposite | undefined;
  942. maskImage?: _$csstype.Property.MaskImage | undefined;
  943. maskMode?: _$csstype.Property.MaskMode | undefined;
  944. maskOrigin?: _$csstype.Property.MaskOrigin | undefined;
  945. maskPosition?: _$csstype.Property.MaskPosition<string | number> | undefined;
  946. maskRepeat?: _$csstype.Property.MaskRepeat | undefined;
  947. maskSize?: _$csstype.Property.MaskSize<string | number> | undefined;
  948. maskType?: _$csstype.Property.MaskType | undefined;
  949. masonryAutoFlow?: _$csstype.Property.MasonryAutoFlow | undefined;
  950. mathDepth?: _$csstype.Property.MathDepth | undefined;
  951. mathShift?: _$csstype.Property.MathShift | undefined;
  952. mathStyle?: _$csstype.Property.MathStyle | undefined;
  953. maxBlockSize?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
  954. maxHeight?: _$csstype.Property.MaxHeight<string | number> | undefined;
  955. maxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  956. maxLines?: _$csstype.Property.MaxLines | undefined;
  957. maxWidth?: _$csstype.Property.MaxWidth<string | number> | undefined;
  958. minBlockSize?: _$csstype.Property.MinBlockSize<string | number> | undefined;
  959. minHeight?: _$csstype.Property.MinHeight<string | number> | undefined;
  960. minInlineSize?: _$csstype.Property.MinInlineSize<string | number> | undefined;
  961. minWidth?: _$csstype.Property.MinWidth<string | number> | undefined;
  962. mixBlendMode?: _$csstype.Property.MixBlendMode | undefined;
  963. motionDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  964. motionPath?: _$csstype.Property.OffsetPath | undefined;
  965. motionRotation?: _$csstype.Property.OffsetRotate | undefined;
  966. objectFit?: _$csstype.Property.ObjectFit | undefined;
  967. objectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  968. objectViewBox?: _$csstype.Property.ObjectViewBox | undefined;
  969. offsetAnchor?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
  970. offsetDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  971. offsetPath?: _$csstype.Property.OffsetPath | undefined;
  972. offsetPosition?: _$csstype.Property.OffsetPosition<string | number> | undefined;
  973. offsetRotate?: _$csstype.Property.OffsetRotate | undefined;
  974. offsetRotation?: _$csstype.Property.OffsetRotate | undefined;
  975. opacity?: _$csstype.Property.Opacity | undefined;
  976. order?: _$csstype.Property.Order | undefined;
  977. orphans?: _$csstype.Property.Orphans | undefined;
  978. outlineColor?: _$csstype.Property.OutlineColor | undefined;
  979. outlineOffset?: _$csstype.Property.OutlineOffset<string | number> | undefined;
  980. outlineStyle?: _$csstype.Property.OutlineStyle | undefined;
  981. outlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  982. overflowAnchor?: _$csstype.Property.OverflowAnchor | undefined;
  983. overflowBlock?: _$csstype.Property.OverflowBlock | undefined;
  984. overflowClipBox?: _$csstype.Property.OverflowClipBox | undefined;
  985. overflowClipMargin?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
  986. overflowInline?: _$csstype.Property.OverflowInline | undefined;
  987. overflowWrap?: _$csstype.Property.OverflowWrap | undefined;
  988. overflowX?: _$csstype.Property.OverflowX | undefined;
  989. overflowY?: _$csstype.Property.OverflowY | undefined;
  990. overlay?: _$csstype.Property.Overlay | undefined;
  991. overscrollBehaviorBlock?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
  992. overscrollBehaviorInline?: _$csstype.Property.OverscrollBehaviorInline | undefined;
  993. overscrollBehaviorX?: _$csstype.Property.OverscrollBehaviorX | undefined;
  994. overscrollBehaviorY?: _$csstype.Property.OverscrollBehaviorY | undefined;
  995. paddingBlockEnd?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
  996. paddingBlockStart?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
  997. paddingBottom?: _$csstype.Property.PaddingBottom<string | number> | undefined;
  998. paddingInlineEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  999. paddingInlineStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  1000. paddingLeft?: _$csstype.Property.PaddingLeft<string | number> | undefined;
  1001. paddingRight?: _$csstype.Property.PaddingRight<string | number> | undefined;
  1002. paddingTop?: _$csstype.Property.PaddingTop<string | number> | undefined;
  1003. page?: _$csstype.Property.Page | undefined;
  1004. paintOrder?: _$csstype.Property.PaintOrder | undefined;
  1005. perspective?: _$csstype.Property.Perspective<string | number> | undefined;
  1006. perspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  1007. pointerEvents?: _$csstype.Property.PointerEvents | undefined;
  1008. position?: _$csstype.Property.Position | undefined;
  1009. positionAnchor?: _$csstype.Property.PositionAnchor | undefined;
  1010. positionArea?: _$csstype.Property.PositionArea | undefined;
  1011. positionTryFallbacks?: _$csstype.Property.PositionTryFallbacks | undefined;
  1012. positionTryOrder?: _$csstype.Property.PositionTryOrder | undefined;
  1013. positionVisibility?: _$csstype.Property.PositionVisibility | undefined;
  1014. printColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
  1015. quotes?: _$csstype.Property.Quotes | undefined;
  1016. r?: _$csstype.Property.R<string | number> | undefined;
  1017. resize?: _$csstype.Property.Resize | undefined;
  1018. right?: _$csstype.Property.Right<string | number> | undefined;
  1019. rotate?: _$csstype.Property.Rotate | undefined;
  1020. rowGap?: _$csstype.Property.RowGap<string | number> | undefined;
  1021. rubyAlign?: _$csstype.Property.RubyAlign | undefined;
  1022. rubyMerge?: _$csstype.Property.RubyMerge | undefined;
  1023. rubyOverhang?: _$csstype.Property.RubyOverhang | undefined;
  1024. rubyPosition?: _$csstype.Property.RubyPosition | undefined;
  1025. rx?: _$csstype.Property.Rx<string | number> | undefined;
  1026. ry?: _$csstype.Property.Ry<string | number> | undefined;
  1027. scale?: _$csstype.Property.Scale | undefined;
  1028. scrollBehavior?: _$csstype.Property.ScrollBehavior | undefined;
  1029. scrollInitialTarget?: _$csstype.Property.ScrollInitialTarget | undefined;
  1030. scrollMarginBlockEnd?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
  1031. scrollMarginBlockStart?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
  1032. scrollMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  1033. scrollMarginInlineEnd?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
  1034. scrollMarginInlineStart?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
  1035. scrollMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  1036. scrollMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  1037. scrollMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  1038. scrollPaddingBlockEnd?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
  1039. scrollPaddingBlockStart?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
  1040. scrollPaddingBottom?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
  1041. scrollPaddingInlineEnd?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
  1042. scrollPaddingInlineStart?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
  1043. scrollPaddingLeft?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
  1044. scrollPaddingRight?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
  1045. scrollPaddingTop?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
  1046. scrollSnapAlign?: _$csstype.Property.ScrollSnapAlign | undefined;
  1047. scrollSnapMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  1048. scrollSnapMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  1049. scrollSnapMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  1050. scrollSnapMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  1051. scrollSnapStop?: _$csstype.Property.ScrollSnapStop | undefined;
  1052. scrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
  1053. scrollTimelineAxis?: _$csstype.Property.ScrollTimelineAxis | undefined;
  1054. scrollTimelineName?: _$csstype.Property.ScrollTimelineName | undefined;
  1055. scrollbarColor?: _$csstype.Property.ScrollbarColor | undefined;
  1056. scrollbarGutter?: _$csstype.Property.ScrollbarGutter | undefined;
  1057. scrollbarWidth?: _$csstype.Property.ScrollbarWidth | undefined;
  1058. shapeImageThreshold?: _$csstype.Property.ShapeImageThreshold | undefined;
  1059. shapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  1060. shapeOutside?: _$csstype.Property.ShapeOutside | undefined;
  1061. shapeRendering?: _$csstype.Property.ShapeRendering | undefined;
  1062. speakAs?: _$csstype.Property.SpeakAs | undefined;
  1063. stopColor?: _$csstype.Property.StopColor | undefined;
  1064. stopOpacity?: _$csstype.Property.StopOpacity | undefined;
  1065. stroke?: _$csstype.Property.Stroke | undefined;
  1066. strokeColor?: _$csstype.Property.StrokeColor | undefined;
  1067. strokeDasharray?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
  1068. strokeDashoffset?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
  1069. strokeLinecap?: _$csstype.Property.StrokeLinecap | undefined;
  1070. strokeLinejoin?: _$csstype.Property.StrokeLinejoin | undefined;
  1071. strokeMiterlimit?: _$csstype.Property.StrokeMiterlimit | undefined;
  1072. strokeOpacity?: _$csstype.Property.StrokeOpacity | undefined;
  1073. strokeWidth?: _$csstype.Property.StrokeWidth<string | number> | undefined;
  1074. tabSize?: _$csstype.Property.TabSize<string | number> | undefined;
  1075. tableLayout?: _$csstype.Property.TableLayout | undefined;
  1076. textAlign?: _$csstype.Property.TextAlign | undefined;
  1077. textAlignLast?: _$csstype.Property.TextAlignLast | undefined;
  1078. textAnchor?: _$csstype.Property.TextAnchor | undefined;
  1079. textAutospace?: _$csstype.Property.TextAutospace | undefined;
  1080. textBox?: _$csstype.Property.TextBox | undefined;
  1081. textBoxEdge?: _$csstype.Property.TextBoxEdge | undefined;
  1082. textBoxTrim?: _$csstype.Property.TextBoxTrim | undefined;
  1083. textCombineUpright?: _$csstype.Property.TextCombineUpright | undefined;
  1084. textDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
  1085. textDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
  1086. textDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
  1087. textDecorationSkipInk?: _$csstype.Property.TextDecorationSkipInk | undefined;
  1088. textDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
  1089. textDecorationThickness?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
  1090. textEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
  1091. textEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
  1092. textEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
  1093. textIndent?: _$csstype.Property.TextIndent<string | number> | undefined;
  1094. textJustify?: _$csstype.Property.TextJustify | undefined;
  1095. textOrientation?: _$csstype.Property.TextOrientation | undefined;
  1096. textOverflow?: _$csstype.Property.TextOverflow | undefined;
  1097. textRendering?: _$csstype.Property.TextRendering | undefined;
  1098. textShadow?: _$csstype.Property.TextShadow | undefined;
  1099. textSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
  1100. textSpacingTrim?: _$csstype.Property.TextSpacingTrim | undefined;
  1101. textTransform?: _$csstype.Property.TextTransform | undefined;
  1102. textUnderlineOffset?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
  1103. textUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
  1104. textWrapMode?: _$csstype.Property.TextWrapMode | undefined;
  1105. textWrapStyle?: _$csstype.Property.TextWrapStyle | undefined;
  1106. timelineScope?: _$csstype.Property.TimelineScope | undefined;
  1107. top?: _$csstype.Property.Top<string | number> | undefined;
  1108. touchAction?: _$csstype.Property.TouchAction | undefined;
  1109. transform?: _$csstype.Property.Transform | undefined;
  1110. transformBox?: _$csstype.Property.TransformBox | undefined;
  1111. transformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  1112. transformStyle?: _$csstype.Property.TransformStyle | undefined;
  1113. transitionBehavior?: _$csstype.Property.TransitionBehavior | undefined;
  1114. transitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  1115. transitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  1116. transitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  1117. transitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  1118. translate?: _$csstype.Property.Translate<string | number> | undefined;
  1119. unicodeBidi?: _$csstype.Property.UnicodeBidi | undefined;
  1120. userSelect?: _$csstype.Property.UserSelect | undefined;
  1121. vectorEffect?: _$csstype.Property.VectorEffect | undefined;
  1122. verticalAlign?: _$csstype.Property.VerticalAlign<string | number> | undefined;
  1123. viewTimelineAxis?: _$csstype.Property.ViewTimelineAxis | undefined;
  1124. viewTimelineInset?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
  1125. viewTimelineName?: _$csstype.Property.ViewTimelineName | undefined;
  1126. viewTransitionClass?: _$csstype.Property.ViewTransitionClass | undefined;
  1127. viewTransitionName?: _$csstype.Property.ViewTransitionName | undefined;
  1128. visibility?: _$csstype.Property.Visibility | undefined;
  1129. whiteSpace?: _$csstype.Property.WhiteSpace | undefined;
  1130. whiteSpaceCollapse?: _$csstype.Property.WhiteSpaceCollapse | undefined;
  1131. widows?: _$csstype.Property.Widows | undefined;
  1132. width?: _$csstype.Property.Width<string | number> | undefined;
  1133. willChange?: _$csstype.Property.WillChange | undefined;
  1134. wordBreak?: _$csstype.Property.WordBreak | undefined;
  1135. wordSpacing?: _$csstype.Property.WordSpacing<string | number> | undefined;
  1136. wordWrap?: _$csstype.Property.WordWrap | undefined;
  1137. writingMode?: _$csstype.Property.WritingMode | undefined;
  1138. x?: _$csstype.Property.X<string | number> | undefined;
  1139. y?: _$csstype.Property.Y<string | number> | undefined;
  1140. zIndex?: _$csstype.Property.ZIndex | undefined;
  1141. zoom?: _$csstype.Property.Zoom | undefined;
  1142. all?: _$csstype.Globals | undefined;
  1143. animation?: _$csstype.Property.Animation<string & {}> | undefined;
  1144. animationRange?: _$csstype.Property.AnimationRange<string | number> | undefined;
  1145. background?: _$csstype.Property.Background<string | number> | undefined;
  1146. backgroundPosition?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
  1147. border?: _$csstype.Property.Border<string | number> | undefined;
  1148. borderBlock?: _$csstype.Property.BorderBlock<string | number> | undefined;
  1149. borderBlockColor?: _$csstype.Property.BorderBlockColor | undefined;
  1150. borderBlockEnd?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
  1151. borderBlockStart?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
  1152. borderBlockStyle?: _$csstype.Property.BorderBlockStyle | undefined;
  1153. borderBlockWidth?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
  1154. borderBottom?: _$csstype.Property.BorderBottom<string | number> | undefined;
  1155. borderColor?: _$csstype.Property.BorderColor | undefined;
  1156. borderImage?: _$csstype.Property.BorderImage | undefined;
  1157. borderInline?: _$csstype.Property.BorderInline<string | number> | undefined;
  1158. borderInlineColor?: _$csstype.Property.BorderInlineColor | undefined;
  1159. borderInlineEnd?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
  1160. borderInlineStart?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
  1161. borderInlineStyle?: _$csstype.Property.BorderInlineStyle | undefined;
  1162. borderInlineWidth?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
  1163. borderLeft?: _$csstype.Property.BorderLeft<string | number> | undefined;
  1164. borderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
  1165. borderRight?: _$csstype.Property.BorderRight<string | number> | undefined;
  1166. borderStyle?: _$csstype.Property.BorderStyle | undefined;
  1167. borderTop?: _$csstype.Property.BorderTop<string | number> | undefined;
  1168. borderWidth?: _$csstype.Property.BorderWidth<string | number> | undefined;
  1169. caret?: _$csstype.Property.Caret | undefined;
  1170. columnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
  1171. columns?: _$csstype.Property.Columns<string | number> | undefined;
  1172. containIntrinsicSize?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
  1173. container?: _$csstype.Property.Container | undefined;
  1174. flex?: _$csstype.Property.Flex<string | number> | undefined;
  1175. flexFlow?: _$csstype.Property.FlexFlow | undefined;
  1176. font?: _$csstype.Property.Font | undefined;
  1177. gap?: _$csstype.Property.Gap<string | number> | undefined;
  1178. grid?: _$csstype.Property.Grid | undefined;
  1179. gridArea?: _$csstype.Property.GridArea | undefined;
  1180. gridColumn?: _$csstype.Property.GridColumn | undefined;
  1181. gridRow?: _$csstype.Property.GridRow | undefined;
  1182. gridTemplate?: _$csstype.Property.GridTemplate | undefined;
  1183. inset?: _$csstype.Property.Inset<string | number> | undefined;
  1184. insetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
  1185. insetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
  1186. lineClamp?: _$csstype.Property.LineClamp | undefined;
  1187. listStyle?: _$csstype.Property.ListStyle | undefined;
  1188. margin?: _$csstype.Property.Margin<string | number> | undefined;
  1189. marginBlock?: _$csstype.Property.MarginBlock<string | number> | undefined;
  1190. marginInline?: _$csstype.Property.MarginInline<string | number> | undefined;
  1191. mask?: _$csstype.Property.Mask<string | number> | undefined;
  1192. maskBorder?: _$csstype.Property.MaskBorder | undefined;
  1193. motion?: _$csstype.Property.Offset<string | number> | undefined;
  1194. offset?: _$csstype.Property.Offset<string | number> | undefined;
  1195. outline?: _$csstype.Property.Outline<string | number> | undefined;
  1196. overflow?: _$csstype.Property.Overflow | undefined;
  1197. overscrollBehavior?: _$csstype.Property.OverscrollBehavior | undefined;
  1198. padding?: _$csstype.Property.Padding<string | number> | undefined;
  1199. paddingBlock?: _$csstype.Property.PaddingBlock<string | number> | undefined;
  1200. paddingInline?: _$csstype.Property.PaddingInline<string | number> | undefined;
  1201. placeContent?: _$csstype.Property.PlaceContent | undefined;
  1202. placeItems?: _$csstype.Property.PlaceItems | undefined;
  1203. placeSelf?: _$csstype.Property.PlaceSelf | undefined;
  1204. positionTry?: _$csstype.Property.PositionTry | undefined;
  1205. scrollMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  1206. scrollMarginBlock?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
  1207. scrollMarginInline?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
  1208. scrollPadding?: _$csstype.Property.ScrollPadding<string | number> | undefined;
  1209. scrollPaddingBlock?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
  1210. scrollPaddingInline?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
  1211. scrollSnapMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  1212. scrollTimeline?: _$csstype.Property.ScrollTimeline | undefined;
  1213. textDecoration?: _$csstype.Property.TextDecoration<string | number> | undefined;
  1214. textEmphasis?: _$csstype.Property.TextEmphasis | undefined;
  1215. textWrap?: _$csstype.Property.TextWrap | undefined;
  1216. transition?: _$csstype.Property.Transition<string & {}> | undefined;
  1217. viewTimeline?: _$csstype.Property.ViewTimeline | undefined;
  1218. MozAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  1219. MozAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
  1220. MozAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  1221. MozAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  1222. MozAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  1223. MozAnimationName?: _$csstype.Property.AnimationName | undefined;
  1224. MozAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  1225. MozAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  1226. MozAppearance?: _$csstype.Property.MozAppearance | undefined;
  1227. MozBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
  1228. MozBinding?: _$csstype.Property.MozBinding | undefined;
  1229. MozBorderBottomColors?: _$csstype.Property.MozBorderBottomColors | undefined;
  1230. MozBorderEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
  1231. MozBorderEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
  1232. MozBorderEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  1233. MozBorderLeftColors?: _$csstype.Property.MozBorderLeftColors | undefined;
  1234. MozBorderRightColors?: _$csstype.Property.MozBorderRightColors | undefined;
  1235. MozBorderStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
  1236. MozBorderStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
  1237. MozBorderTopColors?: _$csstype.Property.MozBorderTopColors | undefined;
  1238. MozBoxSizing?: _$csstype.Property.BoxSizing | undefined;
  1239. MozColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
  1240. MozColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
  1241. MozColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  1242. MozColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  1243. MozContextProperties?: _$csstype.Property.MozContextProperties | undefined;
  1244. MozFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
  1245. MozFontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
  1246. MozHyphens?: _$csstype.Property.Hyphens | undefined;
  1247. MozMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  1248. MozMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  1249. MozOrient?: _$csstype.Property.MozOrient | undefined;
  1250. MozOsxFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
  1251. MozOutlineRadiusBottomleft?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
  1252. MozOutlineRadiusBottomright?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
  1253. MozOutlineRadiusTopleft?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
  1254. MozOutlineRadiusTopright?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
  1255. MozPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  1256. MozPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  1257. MozPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
  1258. MozPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  1259. MozStackSizing?: _$csstype.Property.MozStackSizing | undefined;
  1260. MozTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
  1261. MozTextBlink?: _$csstype.Property.MozTextBlink | undefined;
  1262. MozTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
  1263. MozTransform?: _$csstype.Property.Transform | undefined;
  1264. MozTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  1265. MozTransformStyle?: _$csstype.Property.TransformStyle | undefined;
  1266. MozUserModify?: _$csstype.Property.MozUserModify | undefined;
  1267. MozUserSelect?: _$csstype.Property.UserSelect | undefined;
  1268. MozWindowDragging?: _$csstype.Property.MozWindowDragging | undefined;
  1269. MozWindowShadow?: _$csstype.Property.MozWindowShadow | undefined;
  1270. msAccelerator?: _$csstype.Property.MsAccelerator | undefined;
  1271. msBlockProgression?: _$csstype.Property.MsBlockProgression | undefined;
  1272. msContentZoomChaining?: _$csstype.Property.MsContentZoomChaining | undefined;
  1273. msContentZoomLimitMax?: _$csstype.Property.MsContentZoomLimitMax | undefined;
  1274. msContentZoomLimitMin?: _$csstype.Property.MsContentZoomLimitMin | undefined;
  1275. msContentZoomSnapPoints?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
  1276. msContentZoomSnapType?: _$csstype.Property.MsContentZoomSnapType | undefined;
  1277. msContentZooming?: _$csstype.Property.MsContentZooming | undefined;
  1278. msFilter?: _$csstype.Property.MsFilter | undefined;
  1279. msFlexDirection?: _$csstype.Property.FlexDirection | undefined;
  1280. msFlexPositive?: _$csstype.Property.FlexGrow | undefined;
  1281. msFlowFrom?: _$csstype.Property.MsFlowFrom | undefined;
  1282. msFlowInto?: _$csstype.Property.MsFlowInto | undefined;
  1283. msGridColumns?: _$csstype.Property.MsGridColumns<string | number> | undefined;
  1284. msGridRows?: _$csstype.Property.MsGridRows<string | number> | undefined;
  1285. msHighContrastAdjust?: _$csstype.Property.MsHighContrastAdjust | undefined;
  1286. msHyphenateLimitChars?: _$csstype.Property.MsHyphenateLimitChars | undefined;
  1287. msHyphenateLimitLines?: _$csstype.Property.MsHyphenateLimitLines | undefined;
  1288. msHyphenateLimitZone?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
  1289. msHyphens?: _$csstype.Property.Hyphens | undefined;
  1290. msImeAlign?: _$csstype.Property.MsImeAlign | undefined;
  1291. msLineBreak?: _$csstype.Property.LineBreak | undefined;
  1292. msOrder?: _$csstype.Property.Order | undefined;
  1293. msOverflowStyle?: _$csstype.Property.MsOverflowStyle | undefined;
  1294. msOverflowX?: _$csstype.Property.OverflowX | undefined;
  1295. msOverflowY?: _$csstype.Property.OverflowY | undefined;
  1296. msScrollChaining?: _$csstype.Property.MsScrollChaining | undefined;
  1297. msScrollLimitXMax?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
  1298. msScrollLimitXMin?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
  1299. msScrollLimitYMax?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
  1300. msScrollLimitYMin?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
  1301. msScrollRails?: _$csstype.Property.MsScrollRails | undefined;
  1302. msScrollSnapPointsX?: _$csstype.Property.MsScrollSnapPointsX | undefined;
  1303. msScrollSnapPointsY?: _$csstype.Property.MsScrollSnapPointsY | undefined;
  1304. msScrollSnapType?: _$csstype.Property.MsScrollSnapType | undefined;
  1305. msScrollTranslation?: _$csstype.Property.MsScrollTranslation | undefined;
  1306. msScrollbar3dlightColor?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
  1307. msScrollbarArrowColor?: _$csstype.Property.MsScrollbarArrowColor | undefined;
  1308. msScrollbarBaseColor?: _$csstype.Property.MsScrollbarBaseColor | undefined;
  1309. msScrollbarDarkshadowColor?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
  1310. msScrollbarFaceColor?: _$csstype.Property.MsScrollbarFaceColor | undefined;
  1311. msScrollbarHighlightColor?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
  1312. msScrollbarShadowColor?: _$csstype.Property.MsScrollbarShadowColor | undefined;
  1313. msScrollbarTrackColor?: _$csstype.Property.MsScrollbarTrackColor | undefined;
  1314. msTextAutospace?: _$csstype.Property.MsTextAutospace | undefined;
  1315. msTextCombineHorizontal?: _$csstype.Property.TextCombineUpright | undefined;
  1316. msTextOverflow?: _$csstype.Property.TextOverflow | undefined;
  1317. msTouchAction?: _$csstype.Property.TouchAction | undefined;
  1318. msTouchSelect?: _$csstype.Property.MsTouchSelect | undefined;
  1319. msTransform?: _$csstype.Property.Transform | undefined;
  1320. msTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  1321. msTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  1322. msTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  1323. msTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  1324. msTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  1325. msUserSelect?: _$csstype.Property.MsUserSelect | undefined;
  1326. msWordBreak?: _$csstype.Property.WordBreak | undefined;
  1327. msWrapFlow?: _$csstype.Property.MsWrapFlow | undefined;
  1328. msWrapMargin?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
  1329. msWrapThrough?: _$csstype.Property.MsWrapThrough | undefined;
  1330. msWritingMode?: _$csstype.Property.WritingMode | undefined;
  1331. WebkitAlignContent?: _$csstype.Property.AlignContent | undefined;
  1332. WebkitAlignItems?: _$csstype.Property.AlignItems | undefined;
  1333. WebkitAlignSelf?: _$csstype.Property.AlignSelf | undefined;
  1334. WebkitAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  1335. WebkitAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
  1336. WebkitAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  1337. WebkitAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  1338. WebkitAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  1339. WebkitAnimationName?: _$csstype.Property.AnimationName | undefined;
  1340. WebkitAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  1341. WebkitAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  1342. WebkitAppearance?: _$csstype.Property.WebkitAppearance | undefined;
  1343. WebkitBackdropFilter?: _$csstype.Property.BackdropFilter | undefined;
  1344. WebkitBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
  1345. WebkitBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
  1346. WebkitBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
  1347. WebkitBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  1348. WebkitBorderBeforeColor?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
  1349. WebkitBorderBeforeStyle?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
  1350. WebkitBorderBeforeWidth?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
  1351. WebkitBorderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  1352. WebkitBorderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  1353. WebkitBorderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
  1354. WebkitBorderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  1355. WebkitBorderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  1356. WebkitBoxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
  1357. WebkitBoxReflect?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
  1358. WebkitBoxShadow?: _$csstype.Property.BoxShadow | undefined;
  1359. WebkitBoxSizing?: _$csstype.Property.BoxSizing | undefined;
  1360. WebkitClipPath?: _$csstype.Property.ClipPath | undefined;
  1361. WebkitColumnCount?: _$csstype.Property.ColumnCount | undefined;
  1362. WebkitColumnFill?: _$csstype.Property.ColumnFill | undefined;
  1363. WebkitColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
  1364. WebkitColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
  1365. WebkitColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  1366. WebkitColumnSpan?: _$csstype.Property.ColumnSpan | undefined;
  1367. WebkitColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  1368. WebkitFilter?: _$csstype.Property.Filter | undefined;
  1369. WebkitFlexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
  1370. WebkitFlexDirection?: _$csstype.Property.FlexDirection | undefined;
  1371. WebkitFlexGrow?: _$csstype.Property.FlexGrow | undefined;
  1372. WebkitFlexShrink?: _$csstype.Property.FlexShrink | undefined;
  1373. WebkitFlexWrap?: _$csstype.Property.FlexWrap | undefined;
  1374. WebkitFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
  1375. WebkitFontKerning?: _$csstype.Property.FontKerning | undefined;
  1376. WebkitFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
  1377. WebkitFontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
  1378. WebkitHyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
  1379. WebkitHyphens?: _$csstype.Property.Hyphens | undefined;
  1380. WebkitInitialLetter?: _$csstype.Property.InitialLetter | undefined;
  1381. WebkitJustifyContent?: _$csstype.Property.JustifyContent | undefined;
  1382. WebkitLineBreak?: _$csstype.Property.LineBreak | undefined;
  1383. WebkitLineClamp?: _$csstype.Property.WebkitLineClamp | undefined;
  1384. WebkitLogicalHeight?: _$csstype.Property.BlockSize<string | number> | undefined;
  1385. WebkitLogicalWidth?: _$csstype.Property.InlineSize<string | number> | undefined;
  1386. WebkitMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  1387. WebkitMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  1388. WebkitMaskAttachment?: _$csstype.Property.WebkitMaskAttachment | undefined;
  1389. WebkitMaskBoxImageOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  1390. WebkitMaskBoxImageRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
  1391. WebkitMaskBoxImageSlice?: _$csstype.Property.MaskBorderSlice | undefined;
  1392. WebkitMaskBoxImageSource?: _$csstype.Property.MaskBorderSource | undefined;
  1393. WebkitMaskBoxImageWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  1394. WebkitMaskClip?: _$csstype.Property.WebkitMaskClip | undefined;
  1395. WebkitMaskComposite?: _$csstype.Property.WebkitMaskComposite | undefined;
  1396. WebkitMaskImage?: _$csstype.Property.WebkitMaskImage | undefined;
  1397. WebkitMaskOrigin?: _$csstype.Property.WebkitMaskOrigin | undefined;
  1398. WebkitMaskPosition?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
  1399. WebkitMaskPositionX?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
  1400. WebkitMaskPositionY?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
  1401. WebkitMaskRepeat?: _$csstype.Property.WebkitMaskRepeat | undefined;
  1402. WebkitMaskRepeatX?: _$csstype.Property.WebkitMaskRepeatX | undefined;
  1403. WebkitMaskRepeatY?: _$csstype.Property.WebkitMaskRepeatY | undefined;
  1404. WebkitMaskSize?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
  1405. WebkitMaxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  1406. WebkitOrder?: _$csstype.Property.Order | undefined;
  1407. WebkitOverflowScrolling?: _$csstype.Property.WebkitOverflowScrolling | undefined;
  1408. WebkitPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  1409. WebkitPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  1410. WebkitPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
  1411. WebkitPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  1412. WebkitPrintColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
  1413. WebkitRubyPosition?: _$csstype.Property.RubyPosition | undefined;
  1414. WebkitScrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
  1415. WebkitShapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  1416. WebkitTapHighlightColor?: _$csstype.Property.WebkitTapHighlightColor | undefined;
  1417. WebkitTextCombine?: _$csstype.Property.TextCombineUpright | undefined;
  1418. WebkitTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
  1419. WebkitTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
  1420. WebkitTextDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
  1421. WebkitTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
  1422. WebkitTextEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
  1423. WebkitTextEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
  1424. WebkitTextEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
  1425. WebkitTextFillColor?: _$csstype.Property.WebkitTextFillColor | undefined;
  1426. WebkitTextOrientation?: _$csstype.Property.TextOrientation | undefined;
  1427. WebkitTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
  1428. WebkitTextStrokeColor?: _$csstype.Property.WebkitTextStrokeColor | undefined;
  1429. WebkitTextStrokeWidth?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
  1430. WebkitTextUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
  1431. WebkitTouchCallout?: _$csstype.Property.WebkitTouchCallout | undefined;
  1432. WebkitTransform?: _$csstype.Property.Transform | undefined;
  1433. WebkitTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  1434. WebkitTransformStyle?: _$csstype.Property.TransformStyle | undefined;
  1435. WebkitTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  1436. WebkitTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  1437. WebkitTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  1438. WebkitTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  1439. WebkitUserModify?: _$csstype.Property.WebkitUserModify | undefined;
  1440. WebkitUserSelect?: _$csstype.Property.WebkitUserSelect | undefined;
  1441. WebkitWritingMode?: _$csstype.Property.WritingMode | undefined;
  1442. MozAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
  1443. MozBorderImage?: _$csstype.Property.BorderImage | undefined;
  1444. MozColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
  1445. MozColumns?: _$csstype.Property.Columns<string | number> | undefined;
  1446. MozOutlineRadius?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
  1447. MozTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  1448. msContentZoomLimit?: _$csstype.Property.MsContentZoomLimit | undefined;
  1449. msContentZoomSnap?: _$csstype.Property.MsContentZoomSnap | undefined;
  1450. msFlex?: _$csstype.Property.Flex<string | number> | undefined;
  1451. msScrollLimit?: _$csstype.Property.MsScrollLimit | undefined;
  1452. msScrollSnapX?: _$csstype.Property.MsScrollSnapX | undefined;
  1453. msScrollSnapY?: _$csstype.Property.MsScrollSnapY | undefined;
  1454. msTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  1455. WebkitAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
  1456. WebkitBorderBefore?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
  1457. WebkitBorderImage?: _$csstype.Property.BorderImage | undefined;
  1458. WebkitBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
  1459. WebkitColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
  1460. WebkitColumns?: _$csstype.Property.Columns<string | number> | undefined;
  1461. WebkitFlex?: _$csstype.Property.Flex<string | number> | undefined;
  1462. WebkitFlexFlow?: _$csstype.Property.FlexFlow | undefined;
  1463. WebkitMask?: _$csstype.Property.WebkitMask<string | number> | undefined;
  1464. WebkitMaskBoxImage?: _$csstype.Property.MaskBorder | undefined;
  1465. WebkitTextEmphasis?: _$csstype.Property.TextEmphasis | undefined;
  1466. WebkitTextStroke?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
  1467. WebkitTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  1468. boxAlign?: _$csstype.Property.BoxAlign | undefined;
  1469. boxDirection?: _$csstype.Property.BoxDirection | undefined;
  1470. boxFlex?: _$csstype.Property.BoxFlex | undefined;
  1471. boxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
  1472. boxLines?: _$csstype.Property.BoxLines | undefined;
  1473. boxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  1474. boxOrient?: _$csstype.Property.BoxOrient | undefined;
  1475. boxPack?: _$csstype.Property.BoxPack | undefined;
  1476. clip?: _$csstype.Property.Clip | undefined;
  1477. fontStretch?: _$csstype.Property.FontStretch | undefined;
  1478. gridColumnGap?: _$csstype.Property.GridColumnGap<string | number> | undefined;
  1479. gridGap?: _$csstype.Property.GridGap<string | number> | undefined;
  1480. gridRowGap?: _$csstype.Property.GridRowGap<string | number> | undefined;
  1481. imeMode?: _$csstype.Property.ImeMode | undefined;
  1482. insetArea?: _$csstype.Property.PositionArea | undefined;
  1483. offsetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
  1484. offsetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  1485. offsetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  1486. offsetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
  1487. offsetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  1488. offsetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  1489. pageBreakAfter?: _$csstype.Property.PageBreakAfter | undefined;
  1490. pageBreakBefore?: _$csstype.Property.PageBreakBefore | undefined;
  1491. pageBreakInside?: _$csstype.Property.PageBreakInside | undefined;
  1492. positionTryOptions?: _$csstype.Property.PositionTryFallbacks | undefined;
  1493. scrollSnapCoordinate?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
  1494. scrollSnapDestination?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
  1495. scrollSnapPointsX?: _$csstype.Property.ScrollSnapPointsX | undefined;
  1496. scrollSnapPointsY?: _$csstype.Property.ScrollSnapPointsY | undefined;
  1497. scrollSnapTypeX?: _$csstype.Property.ScrollSnapTypeX | undefined;
  1498. scrollSnapTypeY?: _$csstype.Property.ScrollSnapTypeY | undefined;
  1499. KhtmlBoxAlign?: _$csstype.Property.BoxAlign | undefined;
  1500. KhtmlBoxDirection?: _$csstype.Property.BoxDirection | undefined;
  1501. KhtmlBoxFlex?: _$csstype.Property.BoxFlex | undefined;
  1502. KhtmlBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
  1503. KhtmlBoxLines?: _$csstype.Property.BoxLines | undefined;
  1504. KhtmlBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  1505. KhtmlBoxOrient?: _$csstype.Property.BoxOrient | undefined;
  1506. KhtmlBoxPack?: _$csstype.Property.BoxPack | undefined;
  1507. KhtmlLineBreak?: _$csstype.Property.LineBreak | undefined;
  1508. KhtmlOpacity?: _$csstype.Property.Opacity | undefined;
  1509. KhtmlUserSelect?: _$csstype.Property.UserSelect | undefined;
  1510. MozBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
  1511. MozBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
  1512. MozBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  1513. MozBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
  1514. MozBorderRadiusBottomleft?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  1515. MozBorderRadiusBottomright?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  1516. MozBorderRadiusTopleft?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  1517. MozBorderRadiusTopright?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  1518. MozBoxAlign?: _$csstype.Property.BoxAlign | undefined;
  1519. MozBoxDirection?: _$csstype.Property.BoxDirection | undefined;
  1520. MozBoxFlex?: _$csstype.Property.BoxFlex | undefined;
  1521. MozBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  1522. MozBoxOrient?: _$csstype.Property.BoxOrient | undefined;
  1523. MozBoxPack?: _$csstype.Property.BoxPack | undefined;
  1524. MozBoxShadow?: _$csstype.Property.BoxShadow | undefined;
  1525. MozColumnCount?: _$csstype.Property.ColumnCount | undefined;
  1526. MozColumnFill?: _$csstype.Property.ColumnFill | undefined;
  1527. MozFloatEdge?: _$csstype.Property.MozFloatEdge | undefined;
  1528. MozForceBrokenImageIcon?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
  1529. MozOpacity?: _$csstype.Property.Opacity | undefined;
  1530. MozOutline?: _$csstype.Property.Outline<string | number> | undefined;
  1531. MozOutlineColor?: _$csstype.Property.OutlineColor | undefined;
  1532. MozOutlineStyle?: _$csstype.Property.OutlineStyle | undefined;
  1533. MozOutlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  1534. MozTextAlignLast?: _$csstype.Property.TextAlignLast | undefined;
  1535. MozTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
  1536. MozTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
  1537. MozTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
  1538. MozTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  1539. MozTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  1540. MozTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  1541. MozTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  1542. MozUserFocus?: _$csstype.Property.MozUserFocus | undefined;
  1543. MozUserInput?: _$csstype.Property.MozUserInput | undefined;
  1544. msImeMode?: _$csstype.Property.ImeMode | undefined;
  1545. OAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
  1546. OAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  1547. OAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
  1548. OAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  1549. OAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  1550. OAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  1551. OAnimationName?: _$csstype.Property.AnimationName | undefined;
  1552. OAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  1553. OAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  1554. OBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  1555. OBorderImage?: _$csstype.Property.BorderImage | undefined;
  1556. OObjectFit?: _$csstype.Property.ObjectFit | undefined;
  1557. OObjectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  1558. OTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
  1559. OTextOverflow?: _$csstype.Property.TextOverflow | undefined;
  1560. OTransform?: _$csstype.Property.Transform | undefined;
  1561. OTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  1562. OTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  1563. OTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  1564. OTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  1565. OTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  1566. OTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  1567. WebkitBoxAlign?: _$csstype.Property.BoxAlign | undefined;
  1568. WebkitBoxDirection?: _$csstype.Property.BoxDirection | undefined;
  1569. WebkitBoxFlex?: _$csstype.Property.BoxFlex | undefined;
  1570. WebkitBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
  1571. WebkitBoxLines?: _$csstype.Property.BoxLines | undefined;
  1572. WebkitBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  1573. WebkitBoxOrient?: _$csstype.Property.BoxOrient | undefined;
  1574. WebkitBoxPack?: _$csstype.Property.BoxPack | undefined;
  1575. colorInterpolation?: _$csstype.Property.ColorInterpolation | undefined;
  1576. colorRendering?: _$csstype.Property.ColorRendering | undefined;
  1577. glyphOrientationVertical?: _$csstype.Property.GlyphOrientationVertical | undefined;
  1578. "accent-color"?: _$csstype.Property.AccentColor | undefined;
  1579. "align-content"?: _$csstype.Property.AlignContent | undefined;
  1580. "align-items"?: _$csstype.Property.AlignItems | undefined;
  1581. "align-self"?: _$csstype.Property.AlignSelf | undefined;
  1582. "align-tracks"?: _$csstype.Property.AlignTracks | undefined;
  1583. "alignment-baseline"?: _$csstype.Property.AlignmentBaseline | undefined;
  1584. "anchor-name"?: _$csstype.Property.AnchorName | undefined;
  1585. "anchor-scope"?: _$csstype.Property.AnchorScope | undefined;
  1586. "animation-composition"?: _$csstype.Property.AnimationComposition | undefined;
  1587. "animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  1588. "animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  1589. "animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  1590. "animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  1591. "animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  1592. "animation-name"?: _$csstype.Property.AnimationName | undefined;
  1593. "animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  1594. "animation-range-end"?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
  1595. "animation-range-start"?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
  1596. "animation-timeline"?: _$csstype.Property.AnimationTimeline | undefined;
  1597. "animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  1598. "aspect-ratio"?: _$csstype.Property.AspectRatio | undefined;
  1599. "backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
  1600. "backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
  1601. "background-attachment"?: _$csstype.Property.BackgroundAttachment | undefined;
  1602. "background-blend-mode"?: _$csstype.Property.BackgroundBlendMode | undefined;
  1603. "background-clip"?: _$csstype.Property.BackgroundClip | undefined;
  1604. "background-color"?: _$csstype.Property.BackgroundColor | undefined;
  1605. "background-image"?: _$csstype.Property.BackgroundImage | undefined;
  1606. "background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
  1607. "background-position-x"?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
  1608. "background-position-y"?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
  1609. "background-repeat"?: _$csstype.Property.BackgroundRepeat | undefined;
  1610. "background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  1611. "baseline-shift"?: _$csstype.Property.BaselineShift<string | number> | undefined;
  1612. "block-size"?: _$csstype.Property.BlockSize<string | number> | undefined;
  1613. "border-block-end-color"?: _$csstype.Property.BorderBlockEndColor | undefined;
  1614. "border-block-end-style"?: _$csstype.Property.BorderBlockEndStyle | undefined;
  1615. "border-block-end-width"?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
  1616. "border-block-start-color"?: _$csstype.Property.BorderBlockStartColor | undefined;
  1617. "border-block-start-style"?: _$csstype.Property.BorderBlockStartStyle | undefined;
  1618. "border-block-start-width"?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
  1619. "border-bottom-color"?: _$csstype.Property.BorderBottomColor | undefined;
  1620. "border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  1621. "border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  1622. "border-bottom-style"?: _$csstype.Property.BorderBottomStyle | undefined;
  1623. "border-bottom-width"?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
  1624. "border-collapse"?: _$csstype.Property.BorderCollapse | undefined;
  1625. "border-end-end-radius"?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
  1626. "border-end-start-radius"?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
  1627. "border-image-outset"?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
  1628. "border-image-repeat"?: _$csstype.Property.BorderImageRepeat | undefined;
  1629. "border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
  1630. "border-image-source"?: _$csstype.Property.BorderImageSource | undefined;
  1631. "border-image-width"?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
  1632. "border-inline-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
  1633. "border-inline-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
  1634. "border-inline-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  1635. "border-inline-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
  1636. "border-inline-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
  1637. "border-inline-start-width"?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
  1638. "border-left-color"?: _$csstype.Property.BorderLeftColor | undefined;
  1639. "border-left-style"?: _$csstype.Property.BorderLeftStyle | undefined;
  1640. "border-left-width"?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
  1641. "border-right-color"?: _$csstype.Property.BorderRightColor | undefined;
  1642. "border-right-style"?: _$csstype.Property.BorderRightStyle | undefined;
  1643. "border-right-width"?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
  1644. "border-spacing"?: _$csstype.Property.BorderSpacing<string | number> | undefined;
  1645. "border-start-end-radius"?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
  1646. "border-start-start-radius"?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
  1647. "border-top-color"?: _$csstype.Property.BorderTopColor | undefined;
  1648. "border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  1649. "border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  1650. "border-top-style"?: _$csstype.Property.BorderTopStyle | undefined;
  1651. "border-top-width"?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
  1652. "box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
  1653. "box-shadow"?: _$csstype.Property.BoxShadow | undefined;
  1654. "box-sizing"?: _$csstype.Property.BoxSizing | undefined;
  1655. "break-after"?: _$csstype.Property.BreakAfter | undefined;
  1656. "break-before"?: _$csstype.Property.BreakBefore | undefined;
  1657. "break-inside"?: _$csstype.Property.BreakInside | undefined;
  1658. "caption-side"?: _$csstype.Property.CaptionSide | undefined;
  1659. "caret-color"?: _$csstype.Property.CaretColor | undefined;
  1660. "caret-shape"?: _$csstype.Property.CaretShape | undefined;
  1661. "clip-path"?: _$csstype.Property.ClipPath | undefined;
  1662. "clip-rule"?: _$csstype.Property.ClipRule | undefined;
  1663. "color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
  1664. "color-interpolation-filters"?: _$csstype.Property.ColorInterpolationFilters | undefined;
  1665. "color-scheme"?: _$csstype.Property.ColorScheme | undefined;
  1666. "column-count"?: _$csstype.Property.ColumnCount | undefined;
  1667. "column-fill"?: _$csstype.Property.ColumnFill | undefined;
  1668. "column-gap"?: _$csstype.Property.ColumnGap<string | number> | undefined;
  1669. "column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
  1670. "column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
  1671. "column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  1672. "column-span"?: _$csstype.Property.ColumnSpan | undefined;
  1673. "column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  1674. "contain-intrinsic-block-size"?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
  1675. "contain-intrinsic-height"?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
  1676. "contain-intrinsic-inline-size"?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
  1677. "contain-intrinsic-width"?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
  1678. "container-name"?: _$csstype.Property.ContainerName | undefined;
  1679. "container-type"?: _$csstype.Property.ContainerType | undefined;
  1680. "content-visibility"?: _$csstype.Property.ContentVisibility | undefined;
  1681. "counter-increment"?: _$csstype.Property.CounterIncrement | undefined;
  1682. "counter-reset"?: _$csstype.Property.CounterReset | undefined;
  1683. "counter-set"?: _$csstype.Property.CounterSet | undefined;
  1684. "dominant-baseline"?: _$csstype.Property.DominantBaseline | undefined;
  1685. "empty-cells"?: _$csstype.Property.EmptyCells | undefined;
  1686. "field-sizing"?: _$csstype.Property.FieldSizing | undefined;
  1687. "fill-opacity"?: _$csstype.Property.FillOpacity | undefined;
  1688. "fill-rule"?: _$csstype.Property.FillRule | undefined;
  1689. "flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
  1690. "flex-direction"?: _$csstype.Property.FlexDirection | undefined;
  1691. "flex-grow"?: _$csstype.Property.FlexGrow | undefined;
  1692. "flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
  1693. "flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
  1694. "flood-color"?: _$csstype.Property.FloodColor | undefined;
  1695. "flood-opacity"?: _$csstype.Property.FloodOpacity | undefined;
  1696. "font-family"?: _$csstype.Property.FontFamily | undefined;
  1697. "font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
  1698. "font-kerning"?: _$csstype.Property.FontKerning | undefined;
  1699. "font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
  1700. "font-optical-sizing"?: _$csstype.Property.FontOpticalSizing | undefined;
  1701. "font-palette"?: _$csstype.Property.FontPalette | undefined;
  1702. "font-size"?: _$csstype.Property.FontSize<string | number> | undefined;
  1703. "font-size-adjust"?: _$csstype.Property.FontSizeAdjust | undefined;
  1704. "font-smooth"?: _$csstype.Property.FontSmooth<string | number> | undefined;
  1705. "font-style"?: _$csstype.Property.FontStyle | undefined;
  1706. "font-synthesis"?: _$csstype.Property.FontSynthesis | undefined;
  1707. "font-synthesis-position"?: _$csstype.Property.FontSynthesisPosition | undefined;
  1708. "font-synthesis-small-caps"?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
  1709. "font-synthesis-style"?: _$csstype.Property.FontSynthesisStyle | undefined;
  1710. "font-synthesis-weight"?: _$csstype.Property.FontSynthesisWeight | undefined;
  1711. "font-variant"?: _$csstype.Property.FontVariant | undefined;
  1712. "font-variant-alternates"?: _$csstype.Property.FontVariantAlternates | undefined;
  1713. "font-variant-caps"?: _$csstype.Property.FontVariantCaps | undefined;
  1714. "font-variant-east-asian"?: _$csstype.Property.FontVariantEastAsian | undefined;
  1715. "font-variant-emoji"?: _$csstype.Property.FontVariantEmoji | undefined;
  1716. "font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
  1717. "font-variant-numeric"?: _$csstype.Property.FontVariantNumeric | undefined;
  1718. "font-variant-position"?: _$csstype.Property.FontVariantPosition | undefined;
  1719. "font-variation-settings"?: _$csstype.Property.FontVariationSettings | undefined;
  1720. "font-weight"?: _$csstype.Property.FontWeight | undefined;
  1721. "font-width"?: _$csstype.Property.FontWidth | undefined;
  1722. "forced-color-adjust"?: _$csstype.Property.ForcedColorAdjust | undefined;
  1723. "grid-auto-columns"?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
  1724. "grid-auto-flow"?: _$csstype.Property.GridAutoFlow | undefined;
  1725. "grid-auto-rows"?: _$csstype.Property.GridAutoRows<string | number> | undefined;
  1726. "grid-column-end"?: _$csstype.Property.GridColumnEnd | undefined;
  1727. "grid-column-start"?: _$csstype.Property.GridColumnStart | undefined;
  1728. "grid-row-end"?: _$csstype.Property.GridRowEnd | undefined;
  1729. "grid-row-start"?: _$csstype.Property.GridRowStart | undefined;
  1730. "grid-template-areas"?: _$csstype.Property.GridTemplateAreas | undefined;
  1731. "grid-template-columns"?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
  1732. "grid-template-rows"?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
  1733. "hanging-punctuation"?: _$csstype.Property.HangingPunctuation | undefined;
  1734. "hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
  1735. "hyphenate-limit-chars"?: _$csstype.Property.HyphenateLimitChars | undefined;
  1736. "image-orientation"?: _$csstype.Property.ImageOrientation | undefined;
  1737. "image-rendering"?: _$csstype.Property.ImageRendering | undefined;
  1738. "image-resolution"?: _$csstype.Property.ImageResolution | undefined;
  1739. "initial-letter"?: _$csstype.Property.InitialLetter | undefined;
  1740. "initial-letter-align"?: _$csstype.Property.InitialLetterAlign | undefined;
  1741. "inline-size"?: _$csstype.Property.InlineSize<string | number> | undefined;
  1742. "inset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  1743. "inset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  1744. "inset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  1745. "inset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  1746. "interpolate-size"?: _$csstype.Property.InterpolateSize | undefined;
  1747. "justify-content"?: _$csstype.Property.JustifyContent | undefined;
  1748. "justify-items"?: _$csstype.Property.JustifyItems | undefined;
  1749. "justify-self"?: _$csstype.Property.JustifySelf | undefined;
  1750. "justify-tracks"?: _$csstype.Property.JustifyTracks | undefined;
  1751. "letter-spacing"?: _$csstype.Property.LetterSpacing<string | number> | undefined;
  1752. "lighting-color"?: _$csstype.Property.LightingColor | undefined;
  1753. "line-break"?: _$csstype.Property.LineBreak | undefined;
  1754. "line-height"?: _$csstype.Property.LineHeight<string | number> | undefined;
  1755. "line-height-step"?: _$csstype.Property.LineHeightStep<string | number> | undefined;
  1756. "list-style-image"?: _$csstype.Property.ListStyleImage | undefined;
  1757. "list-style-position"?: _$csstype.Property.ListStylePosition | undefined;
  1758. "list-style-type"?: _$csstype.Property.ListStyleType | undefined;
  1759. "margin-block-end"?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
  1760. "margin-block-start"?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
  1761. "margin-bottom"?: _$csstype.Property.MarginBottom<string | number> | undefined;
  1762. "margin-inline-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  1763. "margin-inline-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  1764. "margin-left"?: _$csstype.Property.MarginLeft<string | number> | undefined;
  1765. "margin-right"?: _$csstype.Property.MarginRight<string | number> | undefined;
  1766. "margin-top"?: _$csstype.Property.MarginTop<string | number> | undefined;
  1767. "margin-trim"?: _$csstype.Property.MarginTrim | undefined;
  1768. "marker-end"?: _$csstype.Property.MarkerEnd | undefined;
  1769. "marker-mid"?: _$csstype.Property.MarkerMid | undefined;
  1770. "marker-start"?: _$csstype.Property.MarkerStart | undefined;
  1771. "mask-border-mode"?: _$csstype.Property.MaskBorderMode | undefined;
  1772. "mask-border-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  1773. "mask-border-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
  1774. "mask-border-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
  1775. "mask-border-source"?: _$csstype.Property.MaskBorderSource | undefined;
  1776. "mask-border-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  1777. "mask-clip"?: _$csstype.Property.MaskClip | undefined;
  1778. "mask-composite"?: _$csstype.Property.MaskComposite | undefined;
  1779. "mask-image"?: _$csstype.Property.MaskImage | undefined;
  1780. "mask-mode"?: _$csstype.Property.MaskMode | undefined;
  1781. "mask-origin"?: _$csstype.Property.MaskOrigin | undefined;
  1782. "mask-position"?: _$csstype.Property.MaskPosition<string | number> | undefined;
  1783. "mask-repeat"?: _$csstype.Property.MaskRepeat | undefined;
  1784. "mask-size"?: _$csstype.Property.MaskSize<string | number> | undefined;
  1785. "mask-type"?: _$csstype.Property.MaskType | undefined;
  1786. "masonry-auto-flow"?: _$csstype.Property.MasonryAutoFlow | undefined;
  1787. "math-depth"?: _$csstype.Property.MathDepth | undefined;
  1788. "math-shift"?: _$csstype.Property.MathShift | undefined;
  1789. "math-style"?: _$csstype.Property.MathStyle | undefined;
  1790. "max-block-size"?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
  1791. "max-height"?: _$csstype.Property.MaxHeight<string | number> | undefined;
  1792. "max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  1793. "max-lines"?: _$csstype.Property.MaxLines | undefined;
  1794. "max-width"?: _$csstype.Property.MaxWidth<string | number> | undefined;
  1795. "min-block-size"?: _$csstype.Property.MinBlockSize<string | number> | undefined;
  1796. "min-height"?: _$csstype.Property.MinHeight<string | number> | undefined;
  1797. "min-inline-size"?: _$csstype.Property.MinInlineSize<string | number> | undefined;
  1798. "min-width"?: _$csstype.Property.MinWidth<string | number> | undefined;
  1799. "mix-blend-mode"?: _$csstype.Property.MixBlendMode | undefined;
  1800. "motion-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  1801. "motion-path"?: _$csstype.Property.OffsetPath | undefined;
  1802. "motion-rotation"?: _$csstype.Property.OffsetRotate | undefined;
  1803. "object-fit"?: _$csstype.Property.ObjectFit | undefined;
  1804. "object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  1805. "object-view-box"?: _$csstype.Property.ObjectViewBox | undefined;
  1806. "offset-anchor"?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
  1807. "offset-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  1808. "offset-path"?: _$csstype.Property.OffsetPath | undefined;
  1809. "offset-position"?: _$csstype.Property.OffsetPosition<string | number> | undefined;
  1810. "offset-rotate"?: _$csstype.Property.OffsetRotate | undefined;
  1811. "offset-rotation"?: _$csstype.Property.OffsetRotate | undefined;
  1812. "outline-color"?: _$csstype.Property.OutlineColor | undefined;
  1813. "outline-offset"?: _$csstype.Property.OutlineOffset<string | number> | undefined;
  1814. "outline-style"?: _$csstype.Property.OutlineStyle | undefined;
  1815. "outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  1816. "overflow-anchor"?: _$csstype.Property.OverflowAnchor | undefined;
  1817. "overflow-block"?: _$csstype.Property.OverflowBlock | undefined;
  1818. "overflow-clip-box"?: _$csstype.Property.OverflowClipBox | undefined;
  1819. "overflow-clip-margin"?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
  1820. "overflow-inline"?: _$csstype.Property.OverflowInline | undefined;
  1821. "overflow-wrap"?: _$csstype.Property.OverflowWrap | undefined;
  1822. "overflow-x"?: _$csstype.Property.OverflowX | undefined;
  1823. "overflow-y"?: _$csstype.Property.OverflowY | undefined;
  1824. "overscroll-behavior-block"?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
  1825. "overscroll-behavior-inline"?: _$csstype.Property.OverscrollBehaviorInline | undefined;
  1826. "overscroll-behavior-x"?: _$csstype.Property.OverscrollBehaviorX | undefined;
  1827. "overscroll-behavior-y"?: _$csstype.Property.OverscrollBehaviorY | undefined;
  1828. "padding-block-end"?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
  1829. "padding-block-start"?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
  1830. "padding-bottom"?: _$csstype.Property.PaddingBottom<string | number> | undefined;
  1831. "padding-inline-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  1832. "padding-inline-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  1833. "padding-left"?: _$csstype.Property.PaddingLeft<string | number> | undefined;
  1834. "padding-right"?: _$csstype.Property.PaddingRight<string | number> | undefined;
  1835. "padding-top"?: _$csstype.Property.PaddingTop<string | number> | undefined;
  1836. "paint-order"?: _$csstype.Property.PaintOrder | undefined;
  1837. "perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  1838. "pointer-events"?: _$csstype.Property.PointerEvents | undefined;
  1839. "position-anchor"?: _$csstype.Property.PositionAnchor | undefined;
  1840. "position-area"?: _$csstype.Property.PositionArea | undefined;
  1841. "position-try-fallbacks"?: _$csstype.Property.PositionTryFallbacks | undefined;
  1842. "position-try-order"?: _$csstype.Property.PositionTryOrder | undefined;
  1843. "position-visibility"?: _$csstype.Property.PositionVisibility | undefined;
  1844. "print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
  1845. "row-gap"?: _$csstype.Property.RowGap<string | number> | undefined;
  1846. "ruby-align"?: _$csstype.Property.RubyAlign | undefined;
  1847. "ruby-merge"?: _$csstype.Property.RubyMerge | undefined;
  1848. "ruby-overhang"?: _$csstype.Property.RubyOverhang | undefined;
  1849. "ruby-position"?: _$csstype.Property.RubyPosition | undefined;
  1850. "scroll-behavior"?: _$csstype.Property.ScrollBehavior | undefined;
  1851. "scroll-initial-target"?: _$csstype.Property.ScrollInitialTarget | undefined;
  1852. "scroll-margin-block-end"?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
  1853. "scroll-margin-block-start"?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
  1854. "scroll-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  1855. "scroll-margin-inline-end"?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
  1856. "scroll-margin-inline-start"?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
  1857. "scroll-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  1858. "scroll-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  1859. "scroll-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  1860. "scroll-padding-block-end"?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
  1861. "scroll-padding-block-start"?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
  1862. "scroll-padding-bottom"?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
  1863. "scroll-padding-inline-end"?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
  1864. "scroll-padding-inline-start"?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
  1865. "scroll-padding-left"?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
  1866. "scroll-padding-right"?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
  1867. "scroll-padding-top"?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
  1868. "scroll-snap-align"?: _$csstype.Property.ScrollSnapAlign | undefined;
  1869. "scroll-snap-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  1870. "scroll-snap-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  1871. "scroll-snap-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  1872. "scroll-snap-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  1873. "scroll-snap-stop"?: _$csstype.Property.ScrollSnapStop | undefined;
  1874. "scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
  1875. "scroll-timeline-axis"?: _$csstype.Property.ScrollTimelineAxis | undefined;
  1876. "scroll-timeline-name"?: _$csstype.Property.ScrollTimelineName | undefined;
  1877. "scrollbar-color"?: _$csstype.Property.ScrollbarColor | undefined;
  1878. "scrollbar-gutter"?: _$csstype.Property.ScrollbarGutter | undefined;
  1879. "scrollbar-width"?: _$csstype.Property.ScrollbarWidth | undefined;
  1880. "shape-image-threshold"?: _$csstype.Property.ShapeImageThreshold | undefined;
  1881. "shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  1882. "shape-outside"?: _$csstype.Property.ShapeOutside | undefined;
  1883. "shape-rendering"?: _$csstype.Property.ShapeRendering | undefined;
  1884. "speak-as"?: _$csstype.Property.SpeakAs | undefined;
  1885. "stop-color"?: _$csstype.Property.StopColor | undefined;
  1886. "stop-opacity"?: _$csstype.Property.StopOpacity | undefined;
  1887. "stroke-color"?: _$csstype.Property.StrokeColor | undefined;
  1888. "stroke-dasharray"?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
  1889. "stroke-dashoffset"?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
  1890. "stroke-linecap"?: _$csstype.Property.StrokeLinecap | undefined;
  1891. "stroke-linejoin"?: _$csstype.Property.StrokeLinejoin | undefined;
  1892. "stroke-miterlimit"?: _$csstype.Property.StrokeMiterlimit | undefined;
  1893. "stroke-opacity"?: _$csstype.Property.StrokeOpacity | undefined;
  1894. "stroke-width"?: _$csstype.Property.StrokeWidth<string | number> | undefined;
  1895. "tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
  1896. "table-layout"?: _$csstype.Property.TableLayout | undefined;
  1897. "text-align"?: _$csstype.Property.TextAlign | undefined;
  1898. "text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
  1899. "text-anchor"?: _$csstype.Property.TextAnchor | undefined;
  1900. "text-autospace"?: _$csstype.Property.TextAutospace | undefined;
  1901. "text-box"?: _$csstype.Property.TextBox | undefined;
  1902. "text-box-edge"?: _$csstype.Property.TextBoxEdge | undefined;
  1903. "text-box-trim"?: _$csstype.Property.TextBoxTrim | undefined;
  1904. "text-combine-upright"?: _$csstype.Property.TextCombineUpright | undefined;
  1905. "text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
  1906. "text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
  1907. "text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
  1908. "text-decoration-skip-ink"?: _$csstype.Property.TextDecorationSkipInk | undefined;
  1909. "text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
  1910. "text-decoration-thickness"?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
  1911. "text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
  1912. "text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
  1913. "text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
  1914. "text-indent"?: _$csstype.Property.TextIndent<string | number> | undefined;
  1915. "text-justify"?: _$csstype.Property.TextJustify | undefined;
  1916. "text-orientation"?: _$csstype.Property.TextOrientation | undefined;
  1917. "text-overflow"?: _$csstype.Property.TextOverflow | undefined;
  1918. "text-rendering"?: _$csstype.Property.TextRendering | undefined;
  1919. "text-shadow"?: _$csstype.Property.TextShadow | undefined;
  1920. "text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
  1921. "text-spacing-trim"?: _$csstype.Property.TextSpacingTrim | undefined;
  1922. "text-transform"?: _$csstype.Property.TextTransform | undefined;
  1923. "text-underline-offset"?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
  1924. "text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
  1925. "text-wrap-mode"?: _$csstype.Property.TextWrapMode | undefined;
  1926. "text-wrap-style"?: _$csstype.Property.TextWrapStyle | undefined;
  1927. "timeline-scope"?: _$csstype.Property.TimelineScope | undefined;
  1928. "touch-action"?: _$csstype.Property.TouchAction | undefined;
  1929. "transform-box"?: _$csstype.Property.TransformBox | undefined;
  1930. "transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  1931. "transform-style"?: _$csstype.Property.TransformStyle | undefined;
  1932. "transition-behavior"?: _$csstype.Property.TransitionBehavior | undefined;
  1933. "transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  1934. "transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  1935. "transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  1936. "transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  1937. "unicode-bidi"?: _$csstype.Property.UnicodeBidi | undefined;
  1938. "user-select"?: _$csstype.Property.UserSelect | undefined;
  1939. "vector-effect"?: _$csstype.Property.VectorEffect | undefined;
  1940. "vertical-align"?: _$csstype.Property.VerticalAlign<string | number> | undefined;
  1941. "view-timeline-axis"?: _$csstype.Property.ViewTimelineAxis | undefined;
  1942. "view-timeline-inset"?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
  1943. "view-timeline-name"?: _$csstype.Property.ViewTimelineName | undefined;
  1944. "view-transition-class"?: _$csstype.Property.ViewTransitionClass | undefined;
  1945. "view-transition-name"?: _$csstype.Property.ViewTransitionName | undefined;
  1946. "white-space"?: _$csstype.Property.WhiteSpace | undefined;
  1947. "white-space-collapse"?: _$csstype.Property.WhiteSpaceCollapse | undefined;
  1948. "will-change"?: _$csstype.Property.WillChange | undefined;
  1949. "word-break"?: _$csstype.Property.WordBreak | undefined;
  1950. "word-spacing"?: _$csstype.Property.WordSpacing<string | number> | undefined;
  1951. "word-wrap"?: _$csstype.Property.WordWrap | undefined;
  1952. "writing-mode"?: _$csstype.Property.WritingMode | undefined;
  1953. "z-index"?: _$csstype.Property.ZIndex | undefined;
  1954. "animation-range"?: _$csstype.Property.AnimationRange<string | number> | undefined;
  1955. "background-position"?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
  1956. "border-block"?: _$csstype.Property.BorderBlock<string | number> | undefined;
  1957. "border-block-color"?: _$csstype.Property.BorderBlockColor | undefined;
  1958. "border-block-end"?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
  1959. "border-block-start"?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
  1960. "border-block-style"?: _$csstype.Property.BorderBlockStyle | undefined;
  1961. "border-block-width"?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
  1962. "border-bottom"?: _$csstype.Property.BorderBottom<string | number> | undefined;
  1963. "border-color"?: _$csstype.Property.BorderColor | undefined;
  1964. "border-image"?: _$csstype.Property.BorderImage | undefined;
  1965. "border-inline"?: _$csstype.Property.BorderInline<string | number> | undefined;
  1966. "border-inline-color"?: _$csstype.Property.BorderInlineColor | undefined;
  1967. "border-inline-end"?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
  1968. "border-inline-start"?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
  1969. "border-inline-style"?: _$csstype.Property.BorderInlineStyle | undefined;
  1970. "border-inline-width"?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
  1971. "border-left"?: _$csstype.Property.BorderLeft<string | number> | undefined;
  1972. "border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
  1973. "border-right"?: _$csstype.Property.BorderRight<string | number> | undefined;
  1974. "border-style"?: _$csstype.Property.BorderStyle | undefined;
  1975. "border-top"?: _$csstype.Property.BorderTop<string | number> | undefined;
  1976. "border-width"?: _$csstype.Property.BorderWidth<string | number> | undefined;
  1977. "column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
  1978. "contain-intrinsic-size"?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
  1979. "flex-flow"?: _$csstype.Property.FlexFlow | undefined;
  1980. "grid-area"?: _$csstype.Property.GridArea | undefined;
  1981. "grid-column"?: _$csstype.Property.GridColumn | undefined;
  1982. "grid-row"?: _$csstype.Property.GridRow | undefined;
  1983. "grid-template"?: _$csstype.Property.GridTemplate | undefined;
  1984. "inset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
  1985. "inset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
  1986. "line-clamp"?: _$csstype.Property.LineClamp | undefined;
  1987. "list-style"?: _$csstype.Property.ListStyle | undefined;
  1988. "margin-block"?: _$csstype.Property.MarginBlock<string | number> | undefined;
  1989. "margin-inline"?: _$csstype.Property.MarginInline<string | number> | undefined;
  1990. "mask-border"?: _$csstype.Property.MaskBorder | undefined;
  1991. "overscroll-behavior"?: _$csstype.Property.OverscrollBehavior | undefined;
  1992. "padding-block"?: _$csstype.Property.PaddingBlock<string | number> | undefined;
  1993. "padding-inline"?: _$csstype.Property.PaddingInline<string | number> | undefined;
  1994. "place-content"?: _$csstype.Property.PlaceContent | undefined;
  1995. "place-items"?: _$csstype.Property.PlaceItems | undefined;
  1996. "place-self"?: _$csstype.Property.PlaceSelf | undefined;
  1997. "position-try"?: _$csstype.Property.PositionTry | undefined;
  1998. "scroll-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  1999. "scroll-margin-block"?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
  2000. "scroll-margin-inline"?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
  2001. "scroll-padding"?: _$csstype.Property.ScrollPadding<string | number> | undefined;
  2002. "scroll-padding-block"?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
  2003. "scroll-padding-inline"?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
  2004. "scroll-snap-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  2005. "scroll-timeline"?: _$csstype.Property.ScrollTimeline | undefined;
  2006. "text-decoration"?: _$csstype.Property.TextDecoration<string | number> | undefined;
  2007. "text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
  2008. "text-wrap"?: _$csstype.Property.TextWrap | undefined;
  2009. "view-timeline"?: _$csstype.Property.ViewTimeline | undefined;
  2010. "-moz-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  2011. "-moz-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  2012. "-moz-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  2013. "-moz-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  2014. "-moz-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  2015. "-moz-animation-name"?: _$csstype.Property.AnimationName | undefined;
  2016. "-moz-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  2017. "-moz-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  2018. "-moz-appearance"?: _$csstype.Property.MozAppearance | undefined;
  2019. "-moz-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
  2020. "-moz-binding"?: _$csstype.Property.MozBinding | undefined;
  2021. "-moz-border-bottom-colors"?: _$csstype.Property.MozBorderBottomColors | undefined;
  2022. "-moz-border-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
  2023. "-moz-border-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
  2024. "-moz-border-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  2025. "-moz-border-left-colors"?: _$csstype.Property.MozBorderLeftColors | undefined;
  2026. "-moz-border-right-colors"?: _$csstype.Property.MozBorderRightColors | undefined;
  2027. "-moz-border-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
  2028. "-moz-border-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
  2029. "-moz-border-top-colors"?: _$csstype.Property.MozBorderTopColors | undefined;
  2030. "-moz-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
  2031. "-moz-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
  2032. "-moz-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
  2033. "-moz-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  2034. "-moz-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  2035. "-moz-context-properties"?: _$csstype.Property.MozContextProperties | undefined;
  2036. "-moz-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
  2037. "-moz-font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
  2038. "-moz-hyphens"?: _$csstype.Property.Hyphens | undefined;
  2039. "-moz-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  2040. "-moz-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  2041. "-moz-orient"?: _$csstype.Property.MozOrient | undefined;
  2042. "-moz-osx-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
  2043. "-moz-outline-radius-bottomleft"?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
  2044. "-moz-outline-radius-bottomright"?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
  2045. "-moz-outline-radius-topleft"?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
  2046. "-moz-outline-radius-topright"?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
  2047. "-moz-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  2048. "-moz-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  2049. "-moz-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
  2050. "-moz-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  2051. "-moz-stack-sizing"?: _$csstype.Property.MozStackSizing | undefined;
  2052. "-moz-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
  2053. "-moz-text-blink"?: _$csstype.Property.MozTextBlink | undefined;
  2054. "-moz-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
  2055. "-moz-transform"?: _$csstype.Property.Transform | undefined;
  2056. "-moz-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  2057. "-moz-transform-style"?: _$csstype.Property.TransformStyle | undefined;
  2058. "-moz-user-modify"?: _$csstype.Property.MozUserModify | undefined;
  2059. "-moz-user-select"?: _$csstype.Property.UserSelect | undefined;
  2060. "-moz-window-dragging"?: _$csstype.Property.MozWindowDragging | undefined;
  2061. "-moz-window-shadow"?: _$csstype.Property.MozWindowShadow | undefined;
  2062. "-ms-accelerator"?: _$csstype.Property.MsAccelerator | undefined;
  2063. "-ms-block-progression"?: _$csstype.Property.MsBlockProgression | undefined;
  2064. "-ms-content-zoom-chaining"?: _$csstype.Property.MsContentZoomChaining | undefined;
  2065. "-ms-content-zoom-limit-max"?: _$csstype.Property.MsContentZoomLimitMax | undefined;
  2066. "-ms-content-zoom-limit-min"?: _$csstype.Property.MsContentZoomLimitMin | undefined;
  2067. "-ms-content-zoom-snap-points"?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
  2068. "-ms-content-zoom-snap-type"?: _$csstype.Property.MsContentZoomSnapType | undefined;
  2069. "-ms-content-zooming"?: _$csstype.Property.MsContentZooming | undefined;
  2070. "-ms-filter"?: _$csstype.Property.MsFilter | undefined;
  2071. "-ms-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
  2072. "-ms-flex-positive"?: _$csstype.Property.FlexGrow | undefined;
  2073. "-ms-flow-from"?: _$csstype.Property.MsFlowFrom | undefined;
  2074. "-ms-flow-into"?: _$csstype.Property.MsFlowInto | undefined;
  2075. "-ms-grid-columns"?: _$csstype.Property.MsGridColumns<string | number> | undefined;
  2076. "-ms-grid-rows"?: _$csstype.Property.MsGridRows<string | number> | undefined;
  2077. "-ms-high-contrast-adjust"?: _$csstype.Property.MsHighContrastAdjust | undefined;
  2078. "-ms-hyphenate-limit-chars"?: _$csstype.Property.MsHyphenateLimitChars | undefined;
  2079. "-ms-hyphenate-limit-lines"?: _$csstype.Property.MsHyphenateLimitLines | undefined;
  2080. "-ms-hyphenate-limit-zone"?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
  2081. "-ms-hyphens"?: _$csstype.Property.Hyphens | undefined;
  2082. "-ms-ime-align"?: _$csstype.Property.MsImeAlign | undefined;
  2083. "-ms-line-break"?: _$csstype.Property.LineBreak | undefined;
  2084. "-ms-order"?: _$csstype.Property.Order | undefined;
  2085. "-ms-overflow-style"?: _$csstype.Property.MsOverflowStyle | undefined;
  2086. "-ms-overflow-x"?: _$csstype.Property.OverflowX | undefined;
  2087. "-ms-overflow-y"?: _$csstype.Property.OverflowY | undefined;
  2088. "-ms-scroll-chaining"?: _$csstype.Property.MsScrollChaining | undefined;
  2089. "-ms-scroll-limit-x-max"?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
  2090. "-ms-scroll-limit-x-min"?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
  2091. "-ms-scroll-limit-y-max"?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
  2092. "-ms-scroll-limit-y-min"?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
  2093. "-ms-scroll-rails"?: _$csstype.Property.MsScrollRails | undefined;
  2094. "-ms-scroll-snap-points-x"?: _$csstype.Property.MsScrollSnapPointsX | undefined;
  2095. "-ms-scroll-snap-points-y"?: _$csstype.Property.MsScrollSnapPointsY | undefined;
  2096. "-ms-scroll-snap-type"?: _$csstype.Property.MsScrollSnapType | undefined;
  2097. "-ms-scroll-translation"?: _$csstype.Property.MsScrollTranslation | undefined;
  2098. "-ms-scrollbar-3dlight-color"?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
  2099. "-ms-scrollbar-arrow-color"?: _$csstype.Property.MsScrollbarArrowColor | undefined;
  2100. "-ms-scrollbar-base-color"?: _$csstype.Property.MsScrollbarBaseColor | undefined;
  2101. "-ms-scrollbar-darkshadow-color"?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
  2102. "-ms-scrollbar-face-color"?: _$csstype.Property.MsScrollbarFaceColor | undefined;
  2103. "-ms-scrollbar-highlight-color"?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
  2104. "-ms-scrollbar-shadow-color"?: _$csstype.Property.MsScrollbarShadowColor | undefined;
  2105. "-ms-scrollbar-track-color"?: _$csstype.Property.MsScrollbarTrackColor | undefined;
  2106. "-ms-text-autospace"?: _$csstype.Property.MsTextAutospace | undefined;
  2107. "-ms-text-combine-horizontal"?: _$csstype.Property.TextCombineUpright | undefined;
  2108. "-ms-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
  2109. "-ms-touch-action"?: _$csstype.Property.TouchAction | undefined;
  2110. "-ms-touch-select"?: _$csstype.Property.MsTouchSelect | undefined;
  2111. "-ms-transform"?: _$csstype.Property.Transform | undefined;
  2112. "-ms-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  2113. "-ms-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  2114. "-ms-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  2115. "-ms-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  2116. "-ms-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  2117. "-ms-user-select"?: _$csstype.Property.MsUserSelect | undefined;
  2118. "-ms-word-break"?: _$csstype.Property.WordBreak | undefined;
  2119. "-ms-wrap-flow"?: _$csstype.Property.MsWrapFlow | undefined;
  2120. "-ms-wrap-margin"?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
  2121. "-ms-wrap-through"?: _$csstype.Property.MsWrapThrough | undefined;
  2122. "-ms-writing-mode"?: _$csstype.Property.WritingMode | undefined;
  2123. "-webkit-align-content"?: _$csstype.Property.AlignContent | undefined;
  2124. "-webkit-align-items"?: _$csstype.Property.AlignItems | undefined;
  2125. "-webkit-align-self"?: _$csstype.Property.AlignSelf | undefined;
  2126. "-webkit-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  2127. "-webkit-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  2128. "-webkit-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  2129. "-webkit-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  2130. "-webkit-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  2131. "-webkit-animation-name"?: _$csstype.Property.AnimationName | undefined;
  2132. "-webkit-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  2133. "-webkit-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  2134. "-webkit-appearance"?: _$csstype.Property.WebkitAppearance | undefined;
  2135. "-webkit-backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
  2136. "-webkit-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
  2137. "-webkit-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
  2138. "-webkit-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
  2139. "-webkit-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  2140. "-webkit-border-before-color"?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
  2141. "-webkit-border-before-style"?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
  2142. "-webkit-border-before-width"?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
  2143. "-webkit-border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  2144. "-webkit-border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  2145. "-webkit-border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
  2146. "-webkit-border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  2147. "-webkit-border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  2148. "-webkit-box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
  2149. "-webkit-box-reflect"?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
  2150. "-webkit-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
  2151. "-webkit-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
  2152. "-webkit-clip-path"?: _$csstype.Property.ClipPath | undefined;
  2153. "-webkit-column-count"?: _$csstype.Property.ColumnCount | undefined;
  2154. "-webkit-column-fill"?: _$csstype.Property.ColumnFill | undefined;
  2155. "-webkit-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
  2156. "-webkit-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
  2157. "-webkit-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  2158. "-webkit-column-span"?: _$csstype.Property.ColumnSpan | undefined;
  2159. "-webkit-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  2160. "-webkit-filter"?: _$csstype.Property.Filter | undefined;
  2161. "-webkit-flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
  2162. "-webkit-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
  2163. "-webkit-flex-grow"?: _$csstype.Property.FlexGrow | undefined;
  2164. "-webkit-flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
  2165. "-webkit-flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
  2166. "-webkit-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
  2167. "-webkit-font-kerning"?: _$csstype.Property.FontKerning | undefined;
  2168. "-webkit-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
  2169. "-webkit-font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
  2170. "-webkit-hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
  2171. "-webkit-hyphens"?: _$csstype.Property.Hyphens | undefined;
  2172. "-webkit-initial-letter"?: _$csstype.Property.InitialLetter | undefined;
  2173. "-webkit-justify-content"?: _$csstype.Property.JustifyContent | undefined;
  2174. "-webkit-line-break"?: _$csstype.Property.LineBreak | undefined;
  2175. "-webkit-line-clamp"?: _$csstype.Property.WebkitLineClamp | undefined;
  2176. "-webkit-logical-height"?: _$csstype.Property.BlockSize<string | number> | undefined;
  2177. "-webkit-logical-width"?: _$csstype.Property.InlineSize<string | number> | undefined;
  2178. "-webkit-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  2179. "-webkit-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  2180. "-webkit-mask-attachment"?: _$csstype.Property.WebkitMaskAttachment | undefined;
  2181. "-webkit-mask-box-image-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  2182. "-webkit-mask-box-image-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
  2183. "-webkit-mask-box-image-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
  2184. "-webkit-mask-box-image-source"?: _$csstype.Property.MaskBorderSource | undefined;
  2185. "-webkit-mask-box-image-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  2186. "-webkit-mask-clip"?: _$csstype.Property.WebkitMaskClip | undefined;
  2187. "-webkit-mask-composite"?: _$csstype.Property.WebkitMaskComposite | undefined;
  2188. "-webkit-mask-image"?: _$csstype.Property.WebkitMaskImage | undefined;
  2189. "-webkit-mask-origin"?: _$csstype.Property.WebkitMaskOrigin | undefined;
  2190. "-webkit-mask-position"?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
  2191. "-webkit-mask-position-x"?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
  2192. "-webkit-mask-position-y"?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
  2193. "-webkit-mask-repeat"?: _$csstype.Property.WebkitMaskRepeat | undefined;
  2194. "-webkit-mask-repeat-x"?: _$csstype.Property.WebkitMaskRepeatX | undefined;
  2195. "-webkit-mask-repeat-y"?: _$csstype.Property.WebkitMaskRepeatY | undefined;
  2196. "-webkit-mask-size"?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
  2197. "-webkit-max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  2198. "-webkit-order"?: _$csstype.Property.Order | undefined;
  2199. "-webkit-overflow-scrolling"?: _$csstype.Property.WebkitOverflowScrolling | undefined;
  2200. "-webkit-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  2201. "-webkit-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  2202. "-webkit-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
  2203. "-webkit-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  2204. "-webkit-print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
  2205. "-webkit-ruby-position"?: _$csstype.Property.RubyPosition | undefined;
  2206. "-webkit-scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
  2207. "-webkit-shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  2208. "-webkit-tap-highlight-color"?: _$csstype.Property.WebkitTapHighlightColor | undefined;
  2209. "-webkit-text-combine"?: _$csstype.Property.TextCombineUpright | undefined;
  2210. "-webkit-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
  2211. "-webkit-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
  2212. "-webkit-text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
  2213. "-webkit-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
  2214. "-webkit-text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
  2215. "-webkit-text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
  2216. "-webkit-text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
  2217. "-webkit-text-fill-color"?: _$csstype.Property.WebkitTextFillColor | undefined;
  2218. "-webkit-text-orientation"?: _$csstype.Property.TextOrientation | undefined;
  2219. "-webkit-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
  2220. "-webkit-text-stroke-color"?: _$csstype.Property.WebkitTextStrokeColor | undefined;
  2221. "-webkit-text-stroke-width"?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
  2222. "-webkit-text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
  2223. "-webkit-touch-callout"?: _$csstype.Property.WebkitTouchCallout | undefined;
  2224. "-webkit-transform"?: _$csstype.Property.Transform | undefined;
  2225. "-webkit-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  2226. "-webkit-transform-style"?: _$csstype.Property.TransformStyle | undefined;
  2227. "-webkit-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  2228. "-webkit-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  2229. "-webkit-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  2230. "-webkit-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  2231. "-webkit-user-modify"?: _$csstype.Property.WebkitUserModify | undefined;
  2232. "-webkit-user-select"?: _$csstype.Property.WebkitUserSelect | undefined;
  2233. "-webkit-writing-mode"?: _$csstype.Property.WritingMode | undefined;
  2234. "-moz-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
  2235. "-moz-border-image"?: _$csstype.Property.BorderImage | undefined;
  2236. "-moz-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
  2237. "-moz-columns"?: _$csstype.Property.Columns<string | number> | undefined;
  2238. "-moz-outline-radius"?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
  2239. "-moz-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  2240. "-ms-content-zoom-limit"?: _$csstype.Property.MsContentZoomLimit | undefined;
  2241. "-ms-content-zoom-snap"?: _$csstype.Property.MsContentZoomSnap | undefined;
  2242. "-ms-flex"?: _$csstype.Property.Flex<string | number> | undefined;
  2243. "-ms-scroll-limit"?: _$csstype.Property.MsScrollLimit | undefined;
  2244. "-ms-scroll-snap-x"?: _$csstype.Property.MsScrollSnapX | undefined;
  2245. "-ms-scroll-snap-y"?: _$csstype.Property.MsScrollSnapY | undefined;
  2246. "-ms-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  2247. "-webkit-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
  2248. "-webkit-border-before"?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
  2249. "-webkit-border-image"?: _$csstype.Property.BorderImage | undefined;
  2250. "-webkit-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
  2251. "-webkit-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
  2252. "-webkit-columns"?: _$csstype.Property.Columns<string | number> | undefined;
  2253. "-webkit-flex"?: _$csstype.Property.Flex<string | number> | undefined;
  2254. "-webkit-flex-flow"?: _$csstype.Property.FlexFlow | undefined;
  2255. "-webkit-mask"?: _$csstype.Property.WebkitMask<string | number> | undefined;
  2256. "-webkit-mask-box-image"?: _$csstype.Property.MaskBorder | undefined;
  2257. "-webkit-text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
  2258. "-webkit-text-stroke"?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
  2259. "-webkit-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  2260. "box-align"?: _$csstype.Property.BoxAlign | undefined;
  2261. "box-direction"?: _$csstype.Property.BoxDirection | undefined;
  2262. "box-flex"?: _$csstype.Property.BoxFlex | undefined;
  2263. "box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
  2264. "box-lines"?: _$csstype.Property.BoxLines | undefined;
  2265. "box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  2266. "box-orient"?: _$csstype.Property.BoxOrient | undefined;
  2267. "box-pack"?: _$csstype.Property.BoxPack | undefined;
  2268. "font-stretch"?: _$csstype.Property.FontStretch | undefined;
  2269. "grid-column-gap"?: _$csstype.Property.GridColumnGap<string | number> | undefined;
  2270. "grid-gap"?: _$csstype.Property.GridGap<string | number> | undefined;
  2271. "grid-row-gap"?: _$csstype.Property.GridRowGap<string | number> | undefined;
  2272. "ime-mode"?: _$csstype.Property.ImeMode | undefined;
  2273. "inset-area"?: _$csstype.Property.PositionArea | undefined;
  2274. "offset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
  2275. "offset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  2276. "offset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  2277. "offset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
  2278. "offset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  2279. "offset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  2280. "page-break-after"?: _$csstype.Property.PageBreakAfter | undefined;
  2281. "page-break-before"?: _$csstype.Property.PageBreakBefore | undefined;
  2282. "page-break-inside"?: _$csstype.Property.PageBreakInside | undefined;
  2283. "position-try-options"?: _$csstype.Property.PositionTryFallbacks | undefined;
  2284. "scroll-snap-coordinate"?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
  2285. "scroll-snap-destination"?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
  2286. "scroll-snap-points-x"?: _$csstype.Property.ScrollSnapPointsX | undefined;
  2287. "scroll-snap-points-y"?: _$csstype.Property.ScrollSnapPointsY | undefined;
  2288. "scroll-snap-type-x"?: _$csstype.Property.ScrollSnapTypeX | undefined;
  2289. "scroll-snap-type-y"?: _$csstype.Property.ScrollSnapTypeY | undefined;
  2290. "-khtml-box-align"?: _$csstype.Property.BoxAlign | undefined;
  2291. "-khtml-box-direction"?: _$csstype.Property.BoxDirection | undefined;
  2292. "-khtml-box-flex"?: _$csstype.Property.BoxFlex | undefined;
  2293. "-khtml-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
  2294. "-khtml-box-lines"?: _$csstype.Property.BoxLines | undefined;
  2295. "-khtml-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  2296. "-khtml-box-orient"?: _$csstype.Property.BoxOrient | undefined;
  2297. "-khtml-box-pack"?: _$csstype.Property.BoxPack | undefined;
  2298. "-khtml-line-break"?: _$csstype.Property.LineBreak | undefined;
  2299. "-khtml-opacity"?: _$csstype.Property.Opacity | undefined;
  2300. "-khtml-user-select"?: _$csstype.Property.UserSelect | undefined;
  2301. "-moz-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
  2302. "-moz-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
  2303. "-moz-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  2304. "-moz-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
  2305. "-moz-border-radius-bottomleft"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  2306. "-moz-border-radius-bottomright"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  2307. "-moz-border-radius-topleft"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  2308. "-moz-border-radius-topright"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  2309. "-moz-box-align"?: _$csstype.Property.BoxAlign | undefined;
  2310. "-moz-box-direction"?: _$csstype.Property.BoxDirection | undefined;
  2311. "-moz-box-flex"?: _$csstype.Property.BoxFlex | undefined;
  2312. "-moz-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  2313. "-moz-box-orient"?: _$csstype.Property.BoxOrient | undefined;
  2314. "-moz-box-pack"?: _$csstype.Property.BoxPack | undefined;
  2315. "-moz-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
  2316. "-moz-column-count"?: _$csstype.Property.ColumnCount | undefined;
  2317. "-moz-column-fill"?: _$csstype.Property.ColumnFill | undefined;
  2318. "-moz-float-edge"?: _$csstype.Property.MozFloatEdge | undefined;
  2319. "-moz-force-broken-image-icon"?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
  2320. "-moz-opacity"?: _$csstype.Property.Opacity | undefined;
  2321. "-moz-outline"?: _$csstype.Property.Outline<string | number> | undefined;
  2322. "-moz-outline-color"?: _$csstype.Property.OutlineColor | undefined;
  2323. "-moz-outline-style"?: _$csstype.Property.OutlineStyle | undefined;
  2324. "-moz-outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  2325. "-moz-text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
  2326. "-moz-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
  2327. "-moz-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
  2328. "-moz-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
  2329. "-moz-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  2330. "-moz-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  2331. "-moz-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  2332. "-moz-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  2333. "-moz-user-focus"?: _$csstype.Property.MozUserFocus | undefined;
  2334. "-moz-user-input"?: _$csstype.Property.MozUserInput | undefined;
  2335. "-ms-ime-mode"?: _$csstype.Property.ImeMode | undefined;
  2336. "-o-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
  2337. "-o-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  2338. "-o-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  2339. "-o-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  2340. "-o-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  2341. "-o-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  2342. "-o-animation-name"?: _$csstype.Property.AnimationName | undefined;
  2343. "-o-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  2344. "-o-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  2345. "-o-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  2346. "-o-border-image"?: _$csstype.Property.BorderImage | undefined;
  2347. "-o-object-fit"?: _$csstype.Property.ObjectFit | undefined;
  2348. "-o-object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  2349. "-o-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
  2350. "-o-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
  2351. "-o-transform"?: _$csstype.Property.Transform | undefined;
  2352. "-o-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  2353. "-o-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  2354. "-o-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  2355. "-o-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  2356. "-o-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  2357. "-o-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  2358. "-webkit-box-align"?: _$csstype.Property.BoxAlign | undefined;
  2359. "-webkit-box-direction"?: _$csstype.Property.BoxDirection | undefined;
  2360. "-webkit-box-flex"?: _$csstype.Property.BoxFlex | undefined;
  2361. "-webkit-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
  2362. "-webkit-box-lines"?: _$csstype.Property.BoxLines | undefined;
  2363. "-webkit-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  2364. "-webkit-box-orient"?: _$csstype.Property.BoxOrient | undefined;
  2365. "-webkit-box-pack"?: _$csstype.Property.BoxPack | undefined;
  2366. "color-interpolation"?: _$csstype.Property.ColorInterpolation | undefined;
  2367. "color-rendering"?: _$csstype.Property.ColorRendering | undefined;
  2368. "glyph-orientation-vertical"?: _$csstype.Property.GlyphOrientationVertical | undefined;
  2369. }, {
  2370. [x: `--${string}`]: string | number | undefined;
  2371. accentColor?: _$csstype.Property.AccentColor | undefined;
  2372. alignContent?: _$csstype.Property.AlignContent | undefined;
  2373. alignItems?: _$csstype.Property.AlignItems | undefined;
  2374. alignSelf?: _$csstype.Property.AlignSelf | undefined;
  2375. alignTracks?: _$csstype.Property.AlignTracks | undefined;
  2376. alignmentBaseline?: _$csstype.Property.AlignmentBaseline | undefined;
  2377. anchorName?: _$csstype.Property.AnchorName | undefined;
  2378. anchorScope?: _$csstype.Property.AnchorScope | undefined;
  2379. animationComposition?: _$csstype.Property.AnimationComposition | undefined;
  2380. animationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  2381. animationDirection?: _$csstype.Property.AnimationDirection | undefined;
  2382. animationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  2383. animationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  2384. animationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  2385. animationName?: _$csstype.Property.AnimationName | undefined;
  2386. animationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  2387. animationRangeEnd?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
  2388. animationRangeStart?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
  2389. animationTimeline?: _$csstype.Property.AnimationTimeline | undefined;
  2390. animationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  2391. appearance?: _$csstype.Property.Appearance | undefined;
  2392. aspectRatio?: _$csstype.Property.AspectRatio | undefined;
  2393. backdropFilter?: _$csstype.Property.BackdropFilter | undefined;
  2394. backfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
  2395. backgroundAttachment?: _$csstype.Property.BackgroundAttachment | undefined;
  2396. backgroundBlendMode?: _$csstype.Property.BackgroundBlendMode | undefined;
  2397. backgroundClip?: _$csstype.Property.BackgroundClip | undefined;
  2398. backgroundColor?: _$csstype.Property.BackgroundColor | undefined;
  2399. backgroundImage?: _$csstype.Property.BackgroundImage | undefined;
  2400. backgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
  2401. backgroundPositionX?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
  2402. backgroundPositionY?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
  2403. backgroundRepeat?: _$csstype.Property.BackgroundRepeat | undefined;
  2404. backgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  2405. baselineShift?: _$csstype.Property.BaselineShift<string | number> | undefined;
  2406. blockSize?: _$csstype.Property.BlockSize<string | number> | undefined;
  2407. borderBlockEndColor?: _$csstype.Property.BorderBlockEndColor | undefined;
  2408. borderBlockEndStyle?: _$csstype.Property.BorderBlockEndStyle | undefined;
  2409. borderBlockEndWidth?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
  2410. borderBlockStartColor?: _$csstype.Property.BorderBlockStartColor | undefined;
  2411. borderBlockStartStyle?: _$csstype.Property.BorderBlockStartStyle | undefined;
  2412. borderBlockStartWidth?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
  2413. borderBottomColor?: _$csstype.Property.BorderBottomColor | undefined;
  2414. borderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  2415. borderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  2416. borderBottomStyle?: _$csstype.Property.BorderBottomStyle | undefined;
  2417. borderBottomWidth?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
  2418. borderCollapse?: _$csstype.Property.BorderCollapse | undefined;
  2419. borderEndEndRadius?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
  2420. borderEndStartRadius?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
  2421. borderImageOutset?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
  2422. borderImageRepeat?: _$csstype.Property.BorderImageRepeat | undefined;
  2423. borderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
  2424. borderImageSource?: _$csstype.Property.BorderImageSource | undefined;
  2425. borderImageWidth?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
  2426. borderInlineEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
  2427. borderInlineEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
  2428. borderInlineEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  2429. borderInlineStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
  2430. borderInlineStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
  2431. borderInlineStartWidth?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
  2432. borderLeftColor?: _$csstype.Property.BorderLeftColor | undefined;
  2433. borderLeftStyle?: _$csstype.Property.BorderLeftStyle | undefined;
  2434. borderLeftWidth?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
  2435. borderRightColor?: _$csstype.Property.BorderRightColor | undefined;
  2436. borderRightStyle?: _$csstype.Property.BorderRightStyle | undefined;
  2437. borderRightWidth?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
  2438. borderSpacing?: _$csstype.Property.BorderSpacing<string | number> | undefined;
  2439. borderStartEndRadius?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
  2440. borderStartStartRadius?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
  2441. borderTopColor?: _$csstype.Property.BorderTopColor | undefined;
  2442. borderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  2443. borderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  2444. borderTopStyle?: _$csstype.Property.BorderTopStyle | undefined;
  2445. borderTopWidth?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
  2446. bottom?: _$csstype.Property.Bottom<string | number> | undefined;
  2447. boxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
  2448. boxShadow?: _$csstype.Property.BoxShadow | undefined;
  2449. boxSizing?: _$csstype.Property.BoxSizing | undefined;
  2450. breakAfter?: _$csstype.Property.BreakAfter | undefined;
  2451. breakBefore?: _$csstype.Property.BreakBefore | undefined;
  2452. breakInside?: _$csstype.Property.BreakInside | undefined;
  2453. captionSide?: _$csstype.Property.CaptionSide | undefined;
  2454. caretColor?: _$csstype.Property.CaretColor | undefined;
  2455. caretShape?: _$csstype.Property.CaretShape | undefined;
  2456. clear?: _$csstype.Property.Clear | undefined;
  2457. clipPath?: _$csstype.Property.ClipPath | undefined;
  2458. clipRule?: _$csstype.Property.ClipRule | undefined;
  2459. color?: _$csstype.Property.Color | undefined;
  2460. colorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
  2461. colorInterpolationFilters?: _$csstype.Property.ColorInterpolationFilters | undefined;
  2462. colorScheme?: _$csstype.Property.ColorScheme | undefined;
  2463. columnCount?: _$csstype.Property.ColumnCount | undefined;
  2464. columnFill?: _$csstype.Property.ColumnFill | undefined;
  2465. columnGap?: _$csstype.Property.ColumnGap<string | number> | undefined;
  2466. columnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
  2467. columnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
  2468. columnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  2469. columnSpan?: _$csstype.Property.ColumnSpan | undefined;
  2470. columnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  2471. contain?: _$csstype.Property.Contain | undefined;
  2472. containIntrinsicBlockSize?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
  2473. containIntrinsicHeight?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
  2474. containIntrinsicInlineSize?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
  2475. containIntrinsicWidth?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
  2476. containerName?: _$csstype.Property.ContainerName | undefined;
  2477. containerType?: _$csstype.Property.ContainerType | undefined;
  2478. content?: _$csstype.Property.Content | undefined;
  2479. contentVisibility?: _$csstype.Property.ContentVisibility | undefined;
  2480. counterIncrement?: _$csstype.Property.CounterIncrement | undefined;
  2481. counterReset?: _$csstype.Property.CounterReset | undefined;
  2482. counterSet?: _$csstype.Property.CounterSet | undefined;
  2483. cursor?: _$csstype.Property.Cursor | undefined;
  2484. cx?: _$csstype.Property.Cx<string | number> | undefined;
  2485. cy?: _$csstype.Property.Cy<string | number> | undefined;
  2486. d?: _$csstype.Property.D | undefined;
  2487. direction?: _$csstype.Property.Direction | undefined;
  2488. display?: _$csstype.Property.Display | undefined;
  2489. dominantBaseline?: _$csstype.Property.DominantBaseline | undefined;
  2490. emptyCells?: _$csstype.Property.EmptyCells | undefined;
  2491. fieldSizing?: _$csstype.Property.FieldSizing | undefined;
  2492. fill?: _$csstype.Property.Fill | undefined;
  2493. fillOpacity?: _$csstype.Property.FillOpacity | undefined;
  2494. fillRule?: _$csstype.Property.FillRule | undefined;
  2495. filter?: _$csstype.Property.Filter | undefined;
  2496. flexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
  2497. flexDirection?: _$csstype.Property.FlexDirection | undefined;
  2498. flexGrow?: _$csstype.Property.FlexGrow | undefined;
  2499. flexShrink?: _$csstype.Property.FlexShrink | undefined;
  2500. flexWrap?: _$csstype.Property.FlexWrap | undefined;
  2501. float?: _$csstype.Property.Float | undefined;
  2502. floodColor?: _$csstype.Property.FloodColor | undefined;
  2503. floodOpacity?: _$csstype.Property.FloodOpacity | undefined;
  2504. fontFamily?: _$csstype.Property.FontFamily | undefined;
  2505. fontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
  2506. fontKerning?: _$csstype.Property.FontKerning | undefined;
  2507. fontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
  2508. fontOpticalSizing?: _$csstype.Property.FontOpticalSizing | undefined;
  2509. fontPalette?: _$csstype.Property.FontPalette | undefined;
  2510. fontSize?: _$csstype.Property.FontSize<string | number> | undefined;
  2511. fontSizeAdjust?: _$csstype.Property.FontSizeAdjust | undefined;
  2512. fontSmooth?: _$csstype.Property.FontSmooth<string | number> | undefined;
  2513. fontStyle?: _$csstype.Property.FontStyle | undefined;
  2514. fontSynthesis?: _$csstype.Property.FontSynthesis | undefined;
  2515. fontSynthesisPosition?: _$csstype.Property.FontSynthesisPosition | undefined;
  2516. fontSynthesisSmallCaps?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
  2517. fontSynthesisStyle?: _$csstype.Property.FontSynthesisStyle | undefined;
  2518. fontSynthesisWeight?: _$csstype.Property.FontSynthesisWeight | undefined;
  2519. fontVariant?: _$csstype.Property.FontVariant | undefined;
  2520. fontVariantAlternates?: _$csstype.Property.FontVariantAlternates | undefined;
  2521. fontVariantCaps?: _$csstype.Property.FontVariantCaps | undefined;
  2522. fontVariantEastAsian?: _$csstype.Property.FontVariantEastAsian | undefined;
  2523. fontVariantEmoji?: _$csstype.Property.FontVariantEmoji | undefined;
  2524. fontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
  2525. fontVariantNumeric?: _$csstype.Property.FontVariantNumeric | undefined;
  2526. fontVariantPosition?: _$csstype.Property.FontVariantPosition | undefined;
  2527. fontVariationSettings?: _$csstype.Property.FontVariationSettings | undefined;
  2528. fontWeight?: _$csstype.Property.FontWeight | undefined;
  2529. fontWidth?: _$csstype.Property.FontWidth | undefined;
  2530. forcedColorAdjust?: _$csstype.Property.ForcedColorAdjust | undefined;
  2531. gridAutoColumns?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
  2532. gridAutoFlow?: _$csstype.Property.GridAutoFlow | undefined;
  2533. gridAutoRows?: _$csstype.Property.GridAutoRows<string | number> | undefined;
  2534. gridColumnEnd?: _$csstype.Property.GridColumnEnd | undefined;
  2535. gridColumnStart?: _$csstype.Property.GridColumnStart | undefined;
  2536. gridRowEnd?: _$csstype.Property.GridRowEnd | undefined;
  2537. gridRowStart?: _$csstype.Property.GridRowStart | undefined;
  2538. gridTemplateAreas?: _$csstype.Property.GridTemplateAreas | undefined;
  2539. gridTemplateColumns?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
  2540. gridTemplateRows?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
  2541. hangingPunctuation?: _$csstype.Property.HangingPunctuation | undefined;
  2542. height?: _$csstype.Property.Height<string | number> | undefined;
  2543. hyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
  2544. hyphenateLimitChars?: _$csstype.Property.HyphenateLimitChars | undefined;
  2545. hyphens?: _$csstype.Property.Hyphens | undefined;
  2546. imageOrientation?: _$csstype.Property.ImageOrientation | undefined;
  2547. imageRendering?: _$csstype.Property.ImageRendering | undefined;
  2548. imageResolution?: _$csstype.Property.ImageResolution | undefined;
  2549. initialLetter?: _$csstype.Property.InitialLetter | undefined;
  2550. initialLetterAlign?: _$csstype.Property.InitialLetterAlign | undefined;
  2551. inlineSize?: _$csstype.Property.InlineSize<string | number> | undefined;
  2552. insetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  2553. insetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  2554. insetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  2555. insetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  2556. interpolateSize?: _$csstype.Property.InterpolateSize | undefined;
  2557. isolation?: _$csstype.Property.Isolation | undefined;
  2558. justifyContent?: _$csstype.Property.JustifyContent | undefined;
  2559. justifyItems?: _$csstype.Property.JustifyItems | undefined;
  2560. justifySelf?: _$csstype.Property.JustifySelf | undefined;
  2561. justifyTracks?: _$csstype.Property.JustifyTracks | undefined;
  2562. left?: _$csstype.Property.Left<string | number> | undefined;
  2563. letterSpacing?: _$csstype.Property.LetterSpacing<string | number> | undefined;
  2564. lightingColor?: _$csstype.Property.LightingColor | undefined;
  2565. lineBreak?: _$csstype.Property.LineBreak | undefined;
  2566. lineHeight?: _$csstype.Property.LineHeight<string | number> | undefined;
  2567. lineHeightStep?: _$csstype.Property.LineHeightStep<string | number> | undefined;
  2568. listStyleImage?: _$csstype.Property.ListStyleImage | undefined;
  2569. listStylePosition?: _$csstype.Property.ListStylePosition | undefined;
  2570. listStyleType?: _$csstype.Property.ListStyleType | undefined;
  2571. marginBlockEnd?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
  2572. marginBlockStart?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
  2573. marginBottom?: _$csstype.Property.MarginBottom<string | number> | undefined;
  2574. marginInlineEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  2575. marginInlineStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  2576. marginLeft?: _$csstype.Property.MarginLeft<string | number> | undefined;
  2577. marginRight?: _$csstype.Property.MarginRight<string | number> | undefined;
  2578. marginTop?: _$csstype.Property.MarginTop<string | number> | undefined;
  2579. marginTrim?: _$csstype.Property.MarginTrim | undefined;
  2580. marker?: _$csstype.Property.Marker | undefined;
  2581. markerEnd?: _$csstype.Property.MarkerEnd | undefined;
  2582. markerMid?: _$csstype.Property.MarkerMid | undefined;
  2583. markerStart?: _$csstype.Property.MarkerStart | undefined;
  2584. maskBorderMode?: _$csstype.Property.MaskBorderMode | undefined;
  2585. maskBorderOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  2586. maskBorderRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
  2587. maskBorderSlice?: _$csstype.Property.MaskBorderSlice | undefined;
  2588. maskBorderSource?: _$csstype.Property.MaskBorderSource | undefined;
  2589. maskBorderWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  2590. maskClip?: _$csstype.Property.MaskClip | undefined;
  2591. maskComposite?: _$csstype.Property.MaskComposite | undefined;
  2592. maskImage?: _$csstype.Property.MaskImage | undefined;
  2593. maskMode?: _$csstype.Property.MaskMode | undefined;
  2594. maskOrigin?: _$csstype.Property.MaskOrigin | undefined;
  2595. maskPosition?: _$csstype.Property.MaskPosition<string | number> | undefined;
  2596. maskRepeat?: _$csstype.Property.MaskRepeat | undefined;
  2597. maskSize?: _$csstype.Property.MaskSize<string | number> | undefined;
  2598. maskType?: _$csstype.Property.MaskType | undefined;
  2599. masonryAutoFlow?: _$csstype.Property.MasonryAutoFlow | undefined;
  2600. mathDepth?: _$csstype.Property.MathDepth | undefined;
  2601. mathShift?: _$csstype.Property.MathShift | undefined;
  2602. mathStyle?: _$csstype.Property.MathStyle | undefined;
  2603. maxBlockSize?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
  2604. maxHeight?: _$csstype.Property.MaxHeight<string | number> | undefined;
  2605. maxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  2606. maxLines?: _$csstype.Property.MaxLines | undefined;
  2607. maxWidth?: _$csstype.Property.MaxWidth<string | number> | undefined;
  2608. minBlockSize?: _$csstype.Property.MinBlockSize<string | number> | undefined;
  2609. minHeight?: _$csstype.Property.MinHeight<string | number> | undefined;
  2610. minInlineSize?: _$csstype.Property.MinInlineSize<string | number> | undefined;
  2611. minWidth?: _$csstype.Property.MinWidth<string | number> | undefined;
  2612. mixBlendMode?: _$csstype.Property.MixBlendMode | undefined;
  2613. motionDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  2614. motionPath?: _$csstype.Property.OffsetPath | undefined;
  2615. motionRotation?: _$csstype.Property.OffsetRotate | undefined;
  2616. objectFit?: _$csstype.Property.ObjectFit | undefined;
  2617. objectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  2618. objectViewBox?: _$csstype.Property.ObjectViewBox | undefined;
  2619. offsetAnchor?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
  2620. offsetDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  2621. offsetPath?: _$csstype.Property.OffsetPath | undefined;
  2622. offsetPosition?: _$csstype.Property.OffsetPosition<string | number> | undefined;
  2623. offsetRotate?: _$csstype.Property.OffsetRotate | undefined;
  2624. offsetRotation?: _$csstype.Property.OffsetRotate | undefined;
  2625. opacity?: _$csstype.Property.Opacity | undefined;
  2626. order?: _$csstype.Property.Order | undefined;
  2627. orphans?: _$csstype.Property.Orphans | undefined;
  2628. outlineColor?: _$csstype.Property.OutlineColor | undefined;
  2629. outlineOffset?: _$csstype.Property.OutlineOffset<string | number> | undefined;
  2630. outlineStyle?: _$csstype.Property.OutlineStyle | undefined;
  2631. outlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  2632. overflowAnchor?: _$csstype.Property.OverflowAnchor | undefined;
  2633. overflowBlock?: _$csstype.Property.OverflowBlock | undefined;
  2634. overflowClipBox?: _$csstype.Property.OverflowClipBox | undefined;
  2635. overflowClipMargin?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
  2636. overflowInline?: _$csstype.Property.OverflowInline | undefined;
  2637. overflowWrap?: _$csstype.Property.OverflowWrap | undefined;
  2638. overflowX?: _$csstype.Property.OverflowX | undefined;
  2639. overflowY?: _$csstype.Property.OverflowY | undefined;
  2640. overlay?: _$csstype.Property.Overlay | undefined;
  2641. overscrollBehaviorBlock?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
  2642. overscrollBehaviorInline?: _$csstype.Property.OverscrollBehaviorInline | undefined;
  2643. overscrollBehaviorX?: _$csstype.Property.OverscrollBehaviorX | undefined;
  2644. overscrollBehaviorY?: _$csstype.Property.OverscrollBehaviorY | undefined;
  2645. paddingBlockEnd?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
  2646. paddingBlockStart?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
  2647. paddingBottom?: _$csstype.Property.PaddingBottom<string | number> | undefined;
  2648. paddingInlineEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  2649. paddingInlineStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  2650. paddingLeft?: _$csstype.Property.PaddingLeft<string | number> | undefined;
  2651. paddingRight?: _$csstype.Property.PaddingRight<string | number> | undefined;
  2652. paddingTop?: _$csstype.Property.PaddingTop<string | number> | undefined;
  2653. page?: _$csstype.Property.Page | undefined;
  2654. paintOrder?: _$csstype.Property.PaintOrder | undefined;
  2655. perspective?: _$csstype.Property.Perspective<string | number> | undefined;
  2656. perspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  2657. pointerEvents?: _$csstype.Property.PointerEvents | undefined;
  2658. position?: _$csstype.Property.Position | undefined;
  2659. positionAnchor?: _$csstype.Property.PositionAnchor | undefined;
  2660. positionArea?: _$csstype.Property.PositionArea | undefined;
  2661. positionTryFallbacks?: _$csstype.Property.PositionTryFallbacks | undefined;
  2662. positionTryOrder?: _$csstype.Property.PositionTryOrder | undefined;
  2663. positionVisibility?: _$csstype.Property.PositionVisibility | undefined;
  2664. printColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
  2665. quotes?: _$csstype.Property.Quotes | undefined;
  2666. r?: _$csstype.Property.R<string | number> | undefined;
  2667. resize?: _$csstype.Property.Resize | undefined;
  2668. right?: _$csstype.Property.Right<string | number> | undefined;
  2669. rotate?: _$csstype.Property.Rotate | undefined;
  2670. rowGap?: _$csstype.Property.RowGap<string | number> | undefined;
  2671. rubyAlign?: _$csstype.Property.RubyAlign | undefined;
  2672. rubyMerge?: _$csstype.Property.RubyMerge | undefined;
  2673. rubyOverhang?: _$csstype.Property.RubyOverhang | undefined;
  2674. rubyPosition?: _$csstype.Property.RubyPosition | undefined;
  2675. rx?: _$csstype.Property.Rx<string | number> | undefined;
  2676. ry?: _$csstype.Property.Ry<string | number> | undefined;
  2677. scale?: _$csstype.Property.Scale | undefined;
  2678. scrollBehavior?: _$csstype.Property.ScrollBehavior | undefined;
  2679. scrollInitialTarget?: _$csstype.Property.ScrollInitialTarget | undefined;
  2680. scrollMarginBlockEnd?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
  2681. scrollMarginBlockStart?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
  2682. scrollMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  2683. scrollMarginInlineEnd?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
  2684. scrollMarginInlineStart?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
  2685. scrollMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  2686. scrollMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  2687. scrollMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  2688. scrollPaddingBlockEnd?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
  2689. scrollPaddingBlockStart?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
  2690. scrollPaddingBottom?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
  2691. scrollPaddingInlineEnd?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
  2692. scrollPaddingInlineStart?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
  2693. scrollPaddingLeft?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
  2694. scrollPaddingRight?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
  2695. scrollPaddingTop?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
  2696. scrollSnapAlign?: _$csstype.Property.ScrollSnapAlign | undefined;
  2697. scrollSnapMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  2698. scrollSnapMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  2699. scrollSnapMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  2700. scrollSnapMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  2701. scrollSnapStop?: _$csstype.Property.ScrollSnapStop | undefined;
  2702. scrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
  2703. scrollTimelineAxis?: _$csstype.Property.ScrollTimelineAxis | undefined;
  2704. scrollTimelineName?: _$csstype.Property.ScrollTimelineName | undefined;
  2705. scrollbarColor?: _$csstype.Property.ScrollbarColor | undefined;
  2706. scrollbarGutter?: _$csstype.Property.ScrollbarGutter | undefined;
  2707. scrollbarWidth?: _$csstype.Property.ScrollbarWidth | undefined;
  2708. shapeImageThreshold?: _$csstype.Property.ShapeImageThreshold | undefined;
  2709. shapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  2710. shapeOutside?: _$csstype.Property.ShapeOutside | undefined;
  2711. shapeRendering?: _$csstype.Property.ShapeRendering | undefined;
  2712. speakAs?: _$csstype.Property.SpeakAs | undefined;
  2713. stopColor?: _$csstype.Property.StopColor | undefined;
  2714. stopOpacity?: _$csstype.Property.StopOpacity | undefined;
  2715. stroke?: _$csstype.Property.Stroke | undefined;
  2716. strokeColor?: _$csstype.Property.StrokeColor | undefined;
  2717. strokeDasharray?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
  2718. strokeDashoffset?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
  2719. strokeLinecap?: _$csstype.Property.StrokeLinecap | undefined;
  2720. strokeLinejoin?: _$csstype.Property.StrokeLinejoin | undefined;
  2721. strokeMiterlimit?: _$csstype.Property.StrokeMiterlimit | undefined;
  2722. strokeOpacity?: _$csstype.Property.StrokeOpacity | undefined;
  2723. strokeWidth?: _$csstype.Property.StrokeWidth<string | number> | undefined;
  2724. tabSize?: _$csstype.Property.TabSize<string | number> | undefined;
  2725. tableLayout?: _$csstype.Property.TableLayout | undefined;
  2726. textAlign?: _$csstype.Property.TextAlign | undefined;
  2727. textAlignLast?: _$csstype.Property.TextAlignLast | undefined;
  2728. textAnchor?: _$csstype.Property.TextAnchor | undefined;
  2729. textAutospace?: _$csstype.Property.TextAutospace | undefined;
  2730. textBox?: _$csstype.Property.TextBox | undefined;
  2731. textBoxEdge?: _$csstype.Property.TextBoxEdge | undefined;
  2732. textBoxTrim?: _$csstype.Property.TextBoxTrim | undefined;
  2733. textCombineUpright?: _$csstype.Property.TextCombineUpright | undefined;
  2734. textDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
  2735. textDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
  2736. textDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
  2737. textDecorationSkipInk?: _$csstype.Property.TextDecorationSkipInk | undefined;
  2738. textDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
  2739. textDecorationThickness?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
  2740. textEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
  2741. textEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
  2742. textEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
  2743. textIndent?: _$csstype.Property.TextIndent<string | number> | undefined;
  2744. textJustify?: _$csstype.Property.TextJustify | undefined;
  2745. textOrientation?: _$csstype.Property.TextOrientation | undefined;
  2746. textOverflow?: _$csstype.Property.TextOverflow | undefined;
  2747. textRendering?: _$csstype.Property.TextRendering | undefined;
  2748. textShadow?: _$csstype.Property.TextShadow | undefined;
  2749. textSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
  2750. textSpacingTrim?: _$csstype.Property.TextSpacingTrim | undefined;
  2751. textTransform?: _$csstype.Property.TextTransform | undefined;
  2752. textUnderlineOffset?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
  2753. textUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
  2754. textWrapMode?: _$csstype.Property.TextWrapMode | undefined;
  2755. textWrapStyle?: _$csstype.Property.TextWrapStyle | undefined;
  2756. timelineScope?: _$csstype.Property.TimelineScope | undefined;
  2757. top?: _$csstype.Property.Top<string | number> | undefined;
  2758. touchAction?: _$csstype.Property.TouchAction | undefined;
  2759. transform?: _$csstype.Property.Transform | undefined;
  2760. transformBox?: _$csstype.Property.TransformBox | undefined;
  2761. transformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  2762. transformStyle?: _$csstype.Property.TransformStyle | undefined;
  2763. transitionBehavior?: _$csstype.Property.TransitionBehavior | undefined;
  2764. transitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  2765. transitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  2766. transitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  2767. transitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  2768. translate?: _$csstype.Property.Translate<string | number> | undefined;
  2769. unicodeBidi?: _$csstype.Property.UnicodeBidi | undefined;
  2770. userSelect?: _$csstype.Property.UserSelect | undefined;
  2771. vectorEffect?: _$csstype.Property.VectorEffect | undefined;
  2772. verticalAlign?: _$csstype.Property.VerticalAlign<string | number> | undefined;
  2773. viewTimelineAxis?: _$csstype.Property.ViewTimelineAxis | undefined;
  2774. viewTimelineInset?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
  2775. viewTimelineName?: _$csstype.Property.ViewTimelineName | undefined;
  2776. viewTransitionClass?: _$csstype.Property.ViewTransitionClass | undefined;
  2777. viewTransitionName?: _$csstype.Property.ViewTransitionName | undefined;
  2778. visibility?: _$csstype.Property.Visibility | undefined;
  2779. whiteSpace?: _$csstype.Property.WhiteSpace | undefined;
  2780. whiteSpaceCollapse?: _$csstype.Property.WhiteSpaceCollapse | undefined;
  2781. widows?: _$csstype.Property.Widows | undefined;
  2782. width?: _$csstype.Property.Width<string | number> | undefined;
  2783. willChange?: _$csstype.Property.WillChange | undefined;
  2784. wordBreak?: _$csstype.Property.WordBreak | undefined;
  2785. wordSpacing?: _$csstype.Property.WordSpacing<string | number> | undefined;
  2786. wordWrap?: _$csstype.Property.WordWrap | undefined;
  2787. writingMode?: _$csstype.Property.WritingMode | undefined;
  2788. x?: _$csstype.Property.X<string | number> | undefined;
  2789. y?: _$csstype.Property.Y<string | number> | undefined;
  2790. zIndex?: _$csstype.Property.ZIndex | undefined;
  2791. zoom?: _$csstype.Property.Zoom | undefined;
  2792. all?: _$csstype.Globals | undefined;
  2793. animation?: _$csstype.Property.Animation<string & {}> | undefined;
  2794. animationRange?: _$csstype.Property.AnimationRange<string | number> | undefined;
  2795. background?: _$csstype.Property.Background<string | number> | undefined;
  2796. backgroundPosition?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
  2797. border?: _$csstype.Property.Border<string | number> | undefined;
  2798. borderBlock?: _$csstype.Property.BorderBlock<string | number> | undefined;
  2799. borderBlockColor?: _$csstype.Property.BorderBlockColor | undefined;
  2800. borderBlockEnd?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
  2801. borderBlockStart?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
  2802. borderBlockStyle?: _$csstype.Property.BorderBlockStyle | undefined;
  2803. borderBlockWidth?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
  2804. borderBottom?: _$csstype.Property.BorderBottom<string | number> | undefined;
  2805. borderColor?: _$csstype.Property.BorderColor | undefined;
  2806. borderImage?: _$csstype.Property.BorderImage | undefined;
  2807. borderInline?: _$csstype.Property.BorderInline<string | number> | undefined;
  2808. borderInlineColor?: _$csstype.Property.BorderInlineColor | undefined;
  2809. borderInlineEnd?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
  2810. borderInlineStart?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
  2811. borderInlineStyle?: _$csstype.Property.BorderInlineStyle | undefined;
  2812. borderInlineWidth?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
  2813. borderLeft?: _$csstype.Property.BorderLeft<string | number> | undefined;
  2814. borderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
  2815. borderRight?: _$csstype.Property.BorderRight<string | number> | undefined;
  2816. borderStyle?: _$csstype.Property.BorderStyle | undefined;
  2817. borderTop?: _$csstype.Property.BorderTop<string | number> | undefined;
  2818. borderWidth?: _$csstype.Property.BorderWidth<string | number> | undefined;
  2819. caret?: _$csstype.Property.Caret | undefined;
  2820. columnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
  2821. columns?: _$csstype.Property.Columns<string | number> | undefined;
  2822. containIntrinsicSize?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
  2823. container?: _$csstype.Property.Container | undefined;
  2824. flex?: _$csstype.Property.Flex<string | number> | undefined;
  2825. flexFlow?: _$csstype.Property.FlexFlow | undefined;
  2826. font?: _$csstype.Property.Font | undefined;
  2827. gap?: _$csstype.Property.Gap<string | number> | undefined;
  2828. grid?: _$csstype.Property.Grid | undefined;
  2829. gridArea?: _$csstype.Property.GridArea | undefined;
  2830. gridColumn?: _$csstype.Property.GridColumn | undefined;
  2831. gridRow?: _$csstype.Property.GridRow | undefined;
  2832. gridTemplate?: _$csstype.Property.GridTemplate | undefined;
  2833. inset?: _$csstype.Property.Inset<string | number> | undefined;
  2834. insetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
  2835. insetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
  2836. lineClamp?: _$csstype.Property.LineClamp | undefined;
  2837. listStyle?: _$csstype.Property.ListStyle | undefined;
  2838. margin?: _$csstype.Property.Margin<string | number> | undefined;
  2839. marginBlock?: _$csstype.Property.MarginBlock<string | number> | undefined;
  2840. marginInline?: _$csstype.Property.MarginInline<string | number> | undefined;
  2841. mask?: _$csstype.Property.Mask<string | number> | undefined;
  2842. maskBorder?: _$csstype.Property.MaskBorder | undefined;
  2843. motion?: _$csstype.Property.Offset<string | number> | undefined;
  2844. offset?: _$csstype.Property.Offset<string | number> | undefined;
  2845. outline?: _$csstype.Property.Outline<string | number> | undefined;
  2846. overflow?: _$csstype.Property.Overflow | undefined;
  2847. overscrollBehavior?: _$csstype.Property.OverscrollBehavior | undefined;
  2848. padding?: _$csstype.Property.Padding<string | number> | undefined;
  2849. paddingBlock?: _$csstype.Property.PaddingBlock<string | number> | undefined;
  2850. paddingInline?: _$csstype.Property.PaddingInline<string | number> | undefined;
  2851. placeContent?: _$csstype.Property.PlaceContent | undefined;
  2852. placeItems?: _$csstype.Property.PlaceItems | undefined;
  2853. placeSelf?: _$csstype.Property.PlaceSelf | undefined;
  2854. positionTry?: _$csstype.Property.PositionTry | undefined;
  2855. scrollMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  2856. scrollMarginBlock?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
  2857. scrollMarginInline?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
  2858. scrollPadding?: _$csstype.Property.ScrollPadding<string | number> | undefined;
  2859. scrollPaddingBlock?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
  2860. scrollPaddingInline?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
  2861. scrollSnapMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  2862. scrollTimeline?: _$csstype.Property.ScrollTimeline | undefined;
  2863. textDecoration?: _$csstype.Property.TextDecoration<string | number> | undefined;
  2864. textEmphasis?: _$csstype.Property.TextEmphasis | undefined;
  2865. textWrap?: _$csstype.Property.TextWrap | undefined;
  2866. transition?: _$csstype.Property.Transition<string & {}> | undefined;
  2867. viewTimeline?: _$csstype.Property.ViewTimeline | undefined;
  2868. MozAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  2869. MozAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
  2870. MozAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  2871. MozAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  2872. MozAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  2873. MozAnimationName?: _$csstype.Property.AnimationName | undefined;
  2874. MozAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  2875. MozAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  2876. MozAppearance?: _$csstype.Property.MozAppearance | undefined;
  2877. MozBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
  2878. MozBinding?: _$csstype.Property.MozBinding | undefined;
  2879. MozBorderBottomColors?: _$csstype.Property.MozBorderBottomColors | undefined;
  2880. MozBorderEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
  2881. MozBorderEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
  2882. MozBorderEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  2883. MozBorderLeftColors?: _$csstype.Property.MozBorderLeftColors | undefined;
  2884. MozBorderRightColors?: _$csstype.Property.MozBorderRightColors | undefined;
  2885. MozBorderStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
  2886. MozBorderStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
  2887. MozBorderTopColors?: _$csstype.Property.MozBorderTopColors | undefined;
  2888. MozBoxSizing?: _$csstype.Property.BoxSizing | undefined;
  2889. MozColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
  2890. MozColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
  2891. MozColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  2892. MozColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  2893. MozContextProperties?: _$csstype.Property.MozContextProperties | undefined;
  2894. MozFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
  2895. MozFontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
  2896. MozHyphens?: _$csstype.Property.Hyphens | undefined;
  2897. MozMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  2898. MozMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  2899. MozOrient?: _$csstype.Property.MozOrient | undefined;
  2900. MozOsxFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
  2901. MozOutlineRadiusBottomleft?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
  2902. MozOutlineRadiusBottomright?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
  2903. MozOutlineRadiusTopleft?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
  2904. MozOutlineRadiusTopright?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
  2905. MozPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  2906. MozPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  2907. MozPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
  2908. MozPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  2909. MozStackSizing?: _$csstype.Property.MozStackSizing | undefined;
  2910. MozTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
  2911. MozTextBlink?: _$csstype.Property.MozTextBlink | undefined;
  2912. MozTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
  2913. MozTransform?: _$csstype.Property.Transform | undefined;
  2914. MozTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  2915. MozTransformStyle?: _$csstype.Property.TransformStyle | undefined;
  2916. MozUserModify?: _$csstype.Property.MozUserModify | undefined;
  2917. MozUserSelect?: _$csstype.Property.UserSelect | undefined;
  2918. MozWindowDragging?: _$csstype.Property.MozWindowDragging | undefined;
  2919. MozWindowShadow?: _$csstype.Property.MozWindowShadow | undefined;
  2920. msAccelerator?: _$csstype.Property.MsAccelerator | undefined;
  2921. msBlockProgression?: _$csstype.Property.MsBlockProgression | undefined;
  2922. msContentZoomChaining?: _$csstype.Property.MsContentZoomChaining | undefined;
  2923. msContentZoomLimitMax?: _$csstype.Property.MsContentZoomLimitMax | undefined;
  2924. msContentZoomLimitMin?: _$csstype.Property.MsContentZoomLimitMin | undefined;
  2925. msContentZoomSnapPoints?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
  2926. msContentZoomSnapType?: _$csstype.Property.MsContentZoomSnapType | undefined;
  2927. msContentZooming?: _$csstype.Property.MsContentZooming | undefined;
  2928. msFilter?: _$csstype.Property.MsFilter | undefined;
  2929. msFlexDirection?: _$csstype.Property.FlexDirection | undefined;
  2930. msFlexPositive?: _$csstype.Property.FlexGrow | undefined;
  2931. msFlowFrom?: _$csstype.Property.MsFlowFrom | undefined;
  2932. msFlowInto?: _$csstype.Property.MsFlowInto | undefined;
  2933. msGridColumns?: _$csstype.Property.MsGridColumns<string | number> | undefined;
  2934. msGridRows?: _$csstype.Property.MsGridRows<string | number> | undefined;
  2935. msHighContrastAdjust?: _$csstype.Property.MsHighContrastAdjust | undefined;
  2936. msHyphenateLimitChars?: _$csstype.Property.MsHyphenateLimitChars | undefined;
  2937. msHyphenateLimitLines?: _$csstype.Property.MsHyphenateLimitLines | undefined;
  2938. msHyphenateLimitZone?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
  2939. msHyphens?: _$csstype.Property.Hyphens | undefined;
  2940. msImeAlign?: _$csstype.Property.MsImeAlign | undefined;
  2941. msLineBreak?: _$csstype.Property.LineBreak | undefined;
  2942. msOrder?: _$csstype.Property.Order | undefined;
  2943. msOverflowStyle?: _$csstype.Property.MsOverflowStyle | undefined;
  2944. msOverflowX?: _$csstype.Property.OverflowX | undefined;
  2945. msOverflowY?: _$csstype.Property.OverflowY | undefined;
  2946. msScrollChaining?: _$csstype.Property.MsScrollChaining | undefined;
  2947. msScrollLimitXMax?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
  2948. msScrollLimitXMin?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
  2949. msScrollLimitYMax?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
  2950. msScrollLimitYMin?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
  2951. msScrollRails?: _$csstype.Property.MsScrollRails | undefined;
  2952. msScrollSnapPointsX?: _$csstype.Property.MsScrollSnapPointsX | undefined;
  2953. msScrollSnapPointsY?: _$csstype.Property.MsScrollSnapPointsY | undefined;
  2954. msScrollSnapType?: _$csstype.Property.MsScrollSnapType | undefined;
  2955. msScrollTranslation?: _$csstype.Property.MsScrollTranslation | undefined;
  2956. msScrollbar3dlightColor?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
  2957. msScrollbarArrowColor?: _$csstype.Property.MsScrollbarArrowColor | undefined;
  2958. msScrollbarBaseColor?: _$csstype.Property.MsScrollbarBaseColor | undefined;
  2959. msScrollbarDarkshadowColor?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
  2960. msScrollbarFaceColor?: _$csstype.Property.MsScrollbarFaceColor | undefined;
  2961. msScrollbarHighlightColor?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
  2962. msScrollbarShadowColor?: _$csstype.Property.MsScrollbarShadowColor | undefined;
  2963. msScrollbarTrackColor?: _$csstype.Property.MsScrollbarTrackColor | undefined;
  2964. msTextAutospace?: _$csstype.Property.MsTextAutospace | undefined;
  2965. msTextCombineHorizontal?: _$csstype.Property.TextCombineUpright | undefined;
  2966. msTextOverflow?: _$csstype.Property.TextOverflow | undefined;
  2967. msTouchAction?: _$csstype.Property.TouchAction | undefined;
  2968. msTouchSelect?: _$csstype.Property.MsTouchSelect | undefined;
  2969. msTransform?: _$csstype.Property.Transform | undefined;
  2970. msTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  2971. msTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  2972. msTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  2973. msTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  2974. msTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  2975. msUserSelect?: _$csstype.Property.MsUserSelect | undefined;
  2976. msWordBreak?: _$csstype.Property.WordBreak | undefined;
  2977. msWrapFlow?: _$csstype.Property.MsWrapFlow | undefined;
  2978. msWrapMargin?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
  2979. msWrapThrough?: _$csstype.Property.MsWrapThrough | undefined;
  2980. msWritingMode?: _$csstype.Property.WritingMode | undefined;
  2981. WebkitAlignContent?: _$csstype.Property.AlignContent | undefined;
  2982. WebkitAlignItems?: _$csstype.Property.AlignItems | undefined;
  2983. WebkitAlignSelf?: _$csstype.Property.AlignSelf | undefined;
  2984. WebkitAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  2985. WebkitAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
  2986. WebkitAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  2987. WebkitAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  2988. WebkitAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  2989. WebkitAnimationName?: _$csstype.Property.AnimationName | undefined;
  2990. WebkitAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  2991. WebkitAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  2992. WebkitAppearance?: _$csstype.Property.WebkitAppearance | undefined;
  2993. WebkitBackdropFilter?: _$csstype.Property.BackdropFilter | undefined;
  2994. WebkitBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
  2995. WebkitBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
  2996. WebkitBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
  2997. WebkitBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  2998. WebkitBorderBeforeColor?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
  2999. WebkitBorderBeforeStyle?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
  3000. WebkitBorderBeforeWidth?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
  3001. WebkitBorderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  3002. WebkitBorderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  3003. WebkitBorderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
  3004. WebkitBorderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  3005. WebkitBorderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  3006. WebkitBoxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
  3007. WebkitBoxReflect?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
  3008. WebkitBoxShadow?: _$csstype.Property.BoxShadow | undefined;
  3009. WebkitBoxSizing?: _$csstype.Property.BoxSizing | undefined;
  3010. WebkitClipPath?: _$csstype.Property.ClipPath | undefined;
  3011. WebkitColumnCount?: _$csstype.Property.ColumnCount | undefined;
  3012. WebkitColumnFill?: _$csstype.Property.ColumnFill | undefined;
  3013. WebkitColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
  3014. WebkitColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
  3015. WebkitColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  3016. WebkitColumnSpan?: _$csstype.Property.ColumnSpan | undefined;
  3017. WebkitColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  3018. WebkitFilter?: _$csstype.Property.Filter | undefined;
  3019. WebkitFlexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
  3020. WebkitFlexDirection?: _$csstype.Property.FlexDirection | undefined;
  3021. WebkitFlexGrow?: _$csstype.Property.FlexGrow | undefined;
  3022. WebkitFlexShrink?: _$csstype.Property.FlexShrink | undefined;
  3023. WebkitFlexWrap?: _$csstype.Property.FlexWrap | undefined;
  3024. WebkitFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
  3025. WebkitFontKerning?: _$csstype.Property.FontKerning | undefined;
  3026. WebkitFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
  3027. WebkitFontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
  3028. WebkitHyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
  3029. WebkitHyphens?: _$csstype.Property.Hyphens | undefined;
  3030. WebkitInitialLetter?: _$csstype.Property.InitialLetter | undefined;
  3031. WebkitJustifyContent?: _$csstype.Property.JustifyContent | undefined;
  3032. WebkitLineBreak?: _$csstype.Property.LineBreak | undefined;
  3033. WebkitLineClamp?: _$csstype.Property.WebkitLineClamp | undefined;
  3034. WebkitLogicalHeight?: _$csstype.Property.BlockSize<string | number> | undefined;
  3035. WebkitLogicalWidth?: _$csstype.Property.InlineSize<string | number> | undefined;
  3036. WebkitMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  3037. WebkitMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  3038. WebkitMaskAttachment?: _$csstype.Property.WebkitMaskAttachment | undefined;
  3039. WebkitMaskBoxImageOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  3040. WebkitMaskBoxImageRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
  3041. WebkitMaskBoxImageSlice?: _$csstype.Property.MaskBorderSlice | undefined;
  3042. WebkitMaskBoxImageSource?: _$csstype.Property.MaskBorderSource | undefined;
  3043. WebkitMaskBoxImageWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  3044. WebkitMaskClip?: _$csstype.Property.WebkitMaskClip | undefined;
  3045. WebkitMaskComposite?: _$csstype.Property.WebkitMaskComposite | undefined;
  3046. WebkitMaskImage?: _$csstype.Property.WebkitMaskImage | undefined;
  3047. WebkitMaskOrigin?: _$csstype.Property.WebkitMaskOrigin | undefined;
  3048. WebkitMaskPosition?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
  3049. WebkitMaskPositionX?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
  3050. WebkitMaskPositionY?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
  3051. WebkitMaskRepeat?: _$csstype.Property.WebkitMaskRepeat | undefined;
  3052. WebkitMaskRepeatX?: _$csstype.Property.WebkitMaskRepeatX | undefined;
  3053. WebkitMaskRepeatY?: _$csstype.Property.WebkitMaskRepeatY | undefined;
  3054. WebkitMaskSize?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
  3055. WebkitMaxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  3056. WebkitOrder?: _$csstype.Property.Order | undefined;
  3057. WebkitOverflowScrolling?: _$csstype.Property.WebkitOverflowScrolling | undefined;
  3058. WebkitPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  3059. WebkitPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  3060. WebkitPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
  3061. WebkitPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  3062. WebkitPrintColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
  3063. WebkitRubyPosition?: _$csstype.Property.RubyPosition | undefined;
  3064. WebkitScrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
  3065. WebkitShapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  3066. WebkitTapHighlightColor?: _$csstype.Property.WebkitTapHighlightColor | undefined;
  3067. WebkitTextCombine?: _$csstype.Property.TextCombineUpright | undefined;
  3068. WebkitTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
  3069. WebkitTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
  3070. WebkitTextDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
  3071. WebkitTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
  3072. WebkitTextEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
  3073. WebkitTextEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
  3074. WebkitTextEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
  3075. WebkitTextFillColor?: _$csstype.Property.WebkitTextFillColor | undefined;
  3076. WebkitTextOrientation?: _$csstype.Property.TextOrientation | undefined;
  3077. WebkitTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
  3078. WebkitTextStrokeColor?: _$csstype.Property.WebkitTextStrokeColor | undefined;
  3079. WebkitTextStrokeWidth?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
  3080. WebkitTextUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
  3081. WebkitTouchCallout?: _$csstype.Property.WebkitTouchCallout | undefined;
  3082. WebkitTransform?: _$csstype.Property.Transform | undefined;
  3083. WebkitTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  3084. WebkitTransformStyle?: _$csstype.Property.TransformStyle | undefined;
  3085. WebkitTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  3086. WebkitTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  3087. WebkitTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  3088. WebkitTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  3089. WebkitUserModify?: _$csstype.Property.WebkitUserModify | undefined;
  3090. WebkitUserSelect?: _$csstype.Property.WebkitUserSelect | undefined;
  3091. WebkitWritingMode?: _$csstype.Property.WritingMode | undefined;
  3092. MozAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
  3093. MozBorderImage?: _$csstype.Property.BorderImage | undefined;
  3094. MozColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
  3095. MozColumns?: _$csstype.Property.Columns<string | number> | undefined;
  3096. MozOutlineRadius?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
  3097. MozTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  3098. msContentZoomLimit?: _$csstype.Property.MsContentZoomLimit | undefined;
  3099. msContentZoomSnap?: _$csstype.Property.MsContentZoomSnap | undefined;
  3100. msFlex?: _$csstype.Property.Flex<string | number> | undefined;
  3101. msScrollLimit?: _$csstype.Property.MsScrollLimit | undefined;
  3102. msScrollSnapX?: _$csstype.Property.MsScrollSnapX | undefined;
  3103. msScrollSnapY?: _$csstype.Property.MsScrollSnapY | undefined;
  3104. msTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  3105. WebkitAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
  3106. WebkitBorderBefore?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
  3107. WebkitBorderImage?: _$csstype.Property.BorderImage | undefined;
  3108. WebkitBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
  3109. WebkitColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
  3110. WebkitColumns?: _$csstype.Property.Columns<string | number> | undefined;
  3111. WebkitFlex?: _$csstype.Property.Flex<string | number> | undefined;
  3112. WebkitFlexFlow?: _$csstype.Property.FlexFlow | undefined;
  3113. WebkitMask?: _$csstype.Property.WebkitMask<string | number> | undefined;
  3114. WebkitMaskBoxImage?: _$csstype.Property.MaskBorder | undefined;
  3115. WebkitTextEmphasis?: _$csstype.Property.TextEmphasis | undefined;
  3116. WebkitTextStroke?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
  3117. WebkitTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  3118. boxAlign?: _$csstype.Property.BoxAlign | undefined;
  3119. boxDirection?: _$csstype.Property.BoxDirection | undefined;
  3120. boxFlex?: _$csstype.Property.BoxFlex | undefined;
  3121. boxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
  3122. boxLines?: _$csstype.Property.BoxLines | undefined;
  3123. boxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  3124. boxOrient?: _$csstype.Property.BoxOrient | undefined;
  3125. boxPack?: _$csstype.Property.BoxPack | undefined;
  3126. clip?: _$csstype.Property.Clip | undefined;
  3127. fontStretch?: _$csstype.Property.FontStretch | undefined;
  3128. gridColumnGap?: _$csstype.Property.GridColumnGap<string | number> | undefined;
  3129. gridGap?: _$csstype.Property.GridGap<string | number> | undefined;
  3130. gridRowGap?: _$csstype.Property.GridRowGap<string | number> | undefined;
  3131. imeMode?: _$csstype.Property.ImeMode | undefined;
  3132. insetArea?: _$csstype.Property.PositionArea | undefined;
  3133. offsetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
  3134. offsetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  3135. offsetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  3136. offsetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
  3137. offsetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  3138. offsetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  3139. pageBreakAfter?: _$csstype.Property.PageBreakAfter | undefined;
  3140. pageBreakBefore?: _$csstype.Property.PageBreakBefore | undefined;
  3141. pageBreakInside?: _$csstype.Property.PageBreakInside | undefined;
  3142. positionTryOptions?: _$csstype.Property.PositionTryFallbacks | undefined;
  3143. scrollSnapCoordinate?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
  3144. scrollSnapDestination?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
  3145. scrollSnapPointsX?: _$csstype.Property.ScrollSnapPointsX | undefined;
  3146. scrollSnapPointsY?: _$csstype.Property.ScrollSnapPointsY | undefined;
  3147. scrollSnapTypeX?: _$csstype.Property.ScrollSnapTypeX | undefined;
  3148. scrollSnapTypeY?: _$csstype.Property.ScrollSnapTypeY | undefined;
  3149. KhtmlBoxAlign?: _$csstype.Property.BoxAlign | undefined;
  3150. KhtmlBoxDirection?: _$csstype.Property.BoxDirection | undefined;
  3151. KhtmlBoxFlex?: _$csstype.Property.BoxFlex | undefined;
  3152. KhtmlBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
  3153. KhtmlBoxLines?: _$csstype.Property.BoxLines | undefined;
  3154. KhtmlBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  3155. KhtmlBoxOrient?: _$csstype.Property.BoxOrient | undefined;
  3156. KhtmlBoxPack?: _$csstype.Property.BoxPack | undefined;
  3157. KhtmlLineBreak?: _$csstype.Property.LineBreak | undefined;
  3158. KhtmlOpacity?: _$csstype.Property.Opacity | undefined;
  3159. KhtmlUserSelect?: _$csstype.Property.UserSelect | undefined;
  3160. MozBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
  3161. MozBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
  3162. MozBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  3163. MozBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
  3164. MozBorderRadiusBottomleft?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  3165. MozBorderRadiusBottomright?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  3166. MozBorderRadiusTopleft?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  3167. MozBorderRadiusTopright?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  3168. MozBoxAlign?: _$csstype.Property.BoxAlign | undefined;
  3169. MozBoxDirection?: _$csstype.Property.BoxDirection | undefined;
  3170. MozBoxFlex?: _$csstype.Property.BoxFlex | undefined;
  3171. MozBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  3172. MozBoxOrient?: _$csstype.Property.BoxOrient | undefined;
  3173. MozBoxPack?: _$csstype.Property.BoxPack | undefined;
  3174. MozBoxShadow?: _$csstype.Property.BoxShadow | undefined;
  3175. MozColumnCount?: _$csstype.Property.ColumnCount | undefined;
  3176. MozColumnFill?: _$csstype.Property.ColumnFill | undefined;
  3177. MozFloatEdge?: _$csstype.Property.MozFloatEdge | undefined;
  3178. MozForceBrokenImageIcon?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
  3179. MozOpacity?: _$csstype.Property.Opacity | undefined;
  3180. MozOutline?: _$csstype.Property.Outline<string | number> | undefined;
  3181. MozOutlineColor?: _$csstype.Property.OutlineColor | undefined;
  3182. MozOutlineStyle?: _$csstype.Property.OutlineStyle | undefined;
  3183. MozOutlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  3184. MozTextAlignLast?: _$csstype.Property.TextAlignLast | undefined;
  3185. MozTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
  3186. MozTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
  3187. MozTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
  3188. MozTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  3189. MozTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  3190. MozTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  3191. MozTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  3192. MozUserFocus?: _$csstype.Property.MozUserFocus | undefined;
  3193. MozUserInput?: _$csstype.Property.MozUserInput | undefined;
  3194. msImeMode?: _$csstype.Property.ImeMode | undefined;
  3195. OAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
  3196. OAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  3197. OAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
  3198. OAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  3199. OAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
  3200. OAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
  3201. OAnimationName?: _$csstype.Property.AnimationName | undefined;
  3202. OAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
  3203. OAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
  3204. OBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  3205. OBorderImage?: _$csstype.Property.BorderImage | undefined;
  3206. OObjectFit?: _$csstype.Property.ObjectFit | undefined;
  3207. OObjectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  3208. OTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
  3209. OTextOverflow?: _$csstype.Property.TextOverflow | undefined;
  3210. OTransform?: _$csstype.Property.Transform | undefined;
  3211. OTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  3212. OTransition?: _$csstype.Property.Transition<string & {}> | undefined;
  3213. OTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  3214. OTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  3215. OTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
  3216. OTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
  3217. WebkitBoxAlign?: _$csstype.Property.BoxAlign | undefined;
  3218. WebkitBoxDirection?: _$csstype.Property.BoxDirection | undefined;
  3219. WebkitBoxFlex?: _$csstype.Property.BoxFlex | undefined;
  3220. WebkitBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
  3221. WebkitBoxLines?: _$csstype.Property.BoxLines | undefined;
  3222. WebkitBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
  3223. WebkitBoxOrient?: _$csstype.Property.BoxOrient | undefined;
  3224. WebkitBoxPack?: _$csstype.Property.BoxPack | undefined;
  3225. colorInterpolation?: _$csstype.Property.ColorInterpolation | undefined;
  3226. colorRendering?: _$csstype.Property.ColorRendering | undefined;
  3227. glyphOrientationVertical?: _$csstype.Property.GlyphOrientationVertical | undefined;
  3228. "accent-color"?: _$csstype.Property.AccentColor | undefined;
  3229. "align-content"?: _$csstype.Property.AlignContent | undefined;
  3230. "align-items"?: _$csstype.Property.AlignItems | undefined;
  3231. "align-self"?: _$csstype.Property.AlignSelf | undefined;
  3232. "align-tracks"?: _$csstype.Property.AlignTracks | undefined;
  3233. "alignment-baseline"?: _$csstype.Property.AlignmentBaseline | undefined;
  3234. "anchor-name"?: _$csstype.Property.AnchorName | undefined;
  3235. "anchor-scope"?: _$csstype.Property.AnchorScope | undefined;
  3236. "animation-composition"?: _$csstype.Property.AnimationComposition | undefined;
  3237. "animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  3238. "animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  3239. "animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  3240. "animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  3241. "animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  3242. "animation-name"?: _$csstype.Property.AnimationName | undefined;
  3243. "animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  3244. "animation-range-end"?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
  3245. "animation-range-start"?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
  3246. "animation-timeline"?: _$csstype.Property.AnimationTimeline | undefined;
  3247. "animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  3248. "aspect-ratio"?: _$csstype.Property.AspectRatio | undefined;
  3249. "backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
  3250. "backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
  3251. "background-attachment"?: _$csstype.Property.BackgroundAttachment | undefined;
  3252. "background-blend-mode"?: _$csstype.Property.BackgroundBlendMode | undefined;
  3253. "background-clip"?: _$csstype.Property.BackgroundClip | undefined;
  3254. "background-color"?: _$csstype.Property.BackgroundColor | undefined;
  3255. "background-image"?: _$csstype.Property.BackgroundImage | undefined;
  3256. "background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
  3257. "background-position-x"?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
  3258. "background-position-y"?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
  3259. "background-repeat"?: _$csstype.Property.BackgroundRepeat | undefined;
  3260. "background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  3261. "baseline-shift"?: _$csstype.Property.BaselineShift<string | number> | undefined;
  3262. "block-size"?: _$csstype.Property.BlockSize<string | number> | undefined;
  3263. "border-block-end-color"?: _$csstype.Property.BorderBlockEndColor | undefined;
  3264. "border-block-end-style"?: _$csstype.Property.BorderBlockEndStyle | undefined;
  3265. "border-block-end-width"?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
  3266. "border-block-start-color"?: _$csstype.Property.BorderBlockStartColor | undefined;
  3267. "border-block-start-style"?: _$csstype.Property.BorderBlockStartStyle | undefined;
  3268. "border-block-start-width"?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
  3269. "border-bottom-color"?: _$csstype.Property.BorderBottomColor | undefined;
  3270. "border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  3271. "border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  3272. "border-bottom-style"?: _$csstype.Property.BorderBottomStyle | undefined;
  3273. "border-bottom-width"?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
  3274. "border-collapse"?: _$csstype.Property.BorderCollapse | undefined;
  3275. "border-end-end-radius"?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
  3276. "border-end-start-radius"?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
  3277. "border-image-outset"?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
  3278. "border-image-repeat"?: _$csstype.Property.BorderImageRepeat | undefined;
  3279. "border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
  3280. "border-image-source"?: _$csstype.Property.BorderImageSource | undefined;
  3281. "border-image-width"?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
  3282. "border-inline-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
  3283. "border-inline-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
  3284. "border-inline-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  3285. "border-inline-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
  3286. "border-inline-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
  3287. "border-inline-start-width"?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
  3288. "border-left-color"?: _$csstype.Property.BorderLeftColor | undefined;
  3289. "border-left-style"?: _$csstype.Property.BorderLeftStyle | undefined;
  3290. "border-left-width"?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
  3291. "border-right-color"?: _$csstype.Property.BorderRightColor | undefined;
  3292. "border-right-style"?: _$csstype.Property.BorderRightStyle | undefined;
  3293. "border-right-width"?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
  3294. "border-spacing"?: _$csstype.Property.BorderSpacing<string | number> | undefined;
  3295. "border-start-end-radius"?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
  3296. "border-start-start-radius"?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
  3297. "border-top-color"?: _$csstype.Property.BorderTopColor | undefined;
  3298. "border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  3299. "border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  3300. "border-top-style"?: _$csstype.Property.BorderTopStyle | undefined;
  3301. "border-top-width"?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
  3302. "box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
  3303. "box-shadow"?: _$csstype.Property.BoxShadow | undefined;
  3304. "box-sizing"?: _$csstype.Property.BoxSizing | undefined;
  3305. "break-after"?: _$csstype.Property.BreakAfter | undefined;
  3306. "break-before"?: _$csstype.Property.BreakBefore | undefined;
  3307. "break-inside"?: _$csstype.Property.BreakInside | undefined;
  3308. "caption-side"?: _$csstype.Property.CaptionSide | undefined;
  3309. "caret-color"?: _$csstype.Property.CaretColor | undefined;
  3310. "caret-shape"?: _$csstype.Property.CaretShape | undefined;
  3311. "clip-path"?: _$csstype.Property.ClipPath | undefined;
  3312. "clip-rule"?: _$csstype.Property.ClipRule | undefined;
  3313. "color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
  3314. "color-interpolation-filters"?: _$csstype.Property.ColorInterpolationFilters | undefined;
  3315. "color-scheme"?: _$csstype.Property.ColorScheme | undefined;
  3316. "column-count"?: _$csstype.Property.ColumnCount | undefined;
  3317. "column-fill"?: _$csstype.Property.ColumnFill | undefined;
  3318. "column-gap"?: _$csstype.Property.ColumnGap<string | number> | undefined;
  3319. "column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
  3320. "column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
  3321. "column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  3322. "column-span"?: _$csstype.Property.ColumnSpan | undefined;
  3323. "column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  3324. "contain-intrinsic-block-size"?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
  3325. "contain-intrinsic-height"?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
  3326. "contain-intrinsic-inline-size"?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
  3327. "contain-intrinsic-width"?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
  3328. "container-name"?: _$csstype.Property.ContainerName | undefined;
  3329. "container-type"?: _$csstype.Property.ContainerType | undefined;
  3330. "content-visibility"?: _$csstype.Property.ContentVisibility | undefined;
  3331. "counter-increment"?: _$csstype.Property.CounterIncrement | undefined;
  3332. "counter-reset"?: _$csstype.Property.CounterReset | undefined;
  3333. "counter-set"?: _$csstype.Property.CounterSet | undefined;
  3334. "dominant-baseline"?: _$csstype.Property.DominantBaseline | undefined;
  3335. "empty-cells"?: _$csstype.Property.EmptyCells | undefined;
  3336. "field-sizing"?: _$csstype.Property.FieldSizing | undefined;
  3337. "fill-opacity"?: _$csstype.Property.FillOpacity | undefined;
  3338. "fill-rule"?: _$csstype.Property.FillRule | undefined;
  3339. "flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
  3340. "flex-direction"?: _$csstype.Property.FlexDirection | undefined;
  3341. "flex-grow"?: _$csstype.Property.FlexGrow | undefined;
  3342. "flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
  3343. "flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
  3344. "flood-color"?: _$csstype.Property.FloodColor | undefined;
  3345. "flood-opacity"?: _$csstype.Property.FloodOpacity | undefined;
  3346. "font-family"?: _$csstype.Property.FontFamily | undefined;
  3347. "font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
  3348. "font-kerning"?: _$csstype.Property.FontKerning | undefined;
  3349. "font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
  3350. "font-optical-sizing"?: _$csstype.Property.FontOpticalSizing | undefined;
  3351. "font-palette"?: _$csstype.Property.FontPalette | undefined;
  3352. "font-size"?: _$csstype.Property.FontSize<string | number> | undefined;
  3353. "font-size-adjust"?: _$csstype.Property.FontSizeAdjust | undefined;
  3354. "font-smooth"?: _$csstype.Property.FontSmooth<string | number> | undefined;
  3355. "font-style"?: _$csstype.Property.FontStyle | undefined;
  3356. "font-synthesis"?: _$csstype.Property.FontSynthesis | undefined;
  3357. "font-synthesis-position"?: _$csstype.Property.FontSynthesisPosition | undefined;
  3358. "font-synthesis-small-caps"?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
  3359. "font-synthesis-style"?: _$csstype.Property.FontSynthesisStyle | undefined;
  3360. "font-synthesis-weight"?: _$csstype.Property.FontSynthesisWeight | undefined;
  3361. "font-variant"?: _$csstype.Property.FontVariant | undefined;
  3362. "font-variant-alternates"?: _$csstype.Property.FontVariantAlternates | undefined;
  3363. "font-variant-caps"?: _$csstype.Property.FontVariantCaps | undefined;
  3364. "font-variant-east-asian"?: _$csstype.Property.FontVariantEastAsian | undefined;
  3365. "font-variant-emoji"?: _$csstype.Property.FontVariantEmoji | undefined;
  3366. "font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
  3367. "font-variant-numeric"?: _$csstype.Property.FontVariantNumeric | undefined;
  3368. "font-variant-position"?: _$csstype.Property.FontVariantPosition | undefined;
  3369. "font-variation-settings"?: _$csstype.Property.FontVariationSettings | undefined;
  3370. "font-weight"?: _$csstype.Property.FontWeight | undefined;
  3371. "font-width"?: _$csstype.Property.FontWidth | undefined;
  3372. "forced-color-adjust"?: _$csstype.Property.ForcedColorAdjust | undefined;
  3373. "grid-auto-columns"?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
  3374. "grid-auto-flow"?: _$csstype.Property.GridAutoFlow | undefined;
  3375. "grid-auto-rows"?: _$csstype.Property.GridAutoRows<string | number> | undefined;
  3376. "grid-column-end"?: _$csstype.Property.GridColumnEnd | undefined;
  3377. "grid-column-start"?: _$csstype.Property.GridColumnStart | undefined;
  3378. "grid-row-end"?: _$csstype.Property.GridRowEnd | undefined;
  3379. "grid-row-start"?: _$csstype.Property.GridRowStart | undefined;
  3380. "grid-template-areas"?: _$csstype.Property.GridTemplateAreas | undefined;
  3381. "grid-template-columns"?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
  3382. "grid-template-rows"?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
  3383. "hanging-punctuation"?: _$csstype.Property.HangingPunctuation | undefined;
  3384. "hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
  3385. "hyphenate-limit-chars"?: _$csstype.Property.HyphenateLimitChars | undefined;
  3386. "image-orientation"?: _$csstype.Property.ImageOrientation | undefined;
  3387. "image-rendering"?: _$csstype.Property.ImageRendering | undefined;
  3388. "image-resolution"?: _$csstype.Property.ImageResolution | undefined;
  3389. "initial-letter"?: _$csstype.Property.InitialLetter | undefined;
  3390. "initial-letter-align"?: _$csstype.Property.InitialLetterAlign | undefined;
  3391. "inline-size"?: _$csstype.Property.InlineSize<string | number> | undefined;
  3392. "inset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  3393. "inset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  3394. "inset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  3395. "inset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  3396. "interpolate-size"?: _$csstype.Property.InterpolateSize | undefined;
  3397. "justify-content"?: _$csstype.Property.JustifyContent | undefined;
  3398. "justify-items"?: _$csstype.Property.JustifyItems | undefined;
  3399. "justify-self"?: _$csstype.Property.JustifySelf | undefined;
  3400. "justify-tracks"?: _$csstype.Property.JustifyTracks | undefined;
  3401. "letter-spacing"?: _$csstype.Property.LetterSpacing<string | number> | undefined;
  3402. "lighting-color"?: _$csstype.Property.LightingColor | undefined;
  3403. "line-break"?: _$csstype.Property.LineBreak | undefined;
  3404. "line-height"?: _$csstype.Property.LineHeight<string | number> | undefined;
  3405. "line-height-step"?: _$csstype.Property.LineHeightStep<string | number> | undefined;
  3406. "list-style-image"?: _$csstype.Property.ListStyleImage | undefined;
  3407. "list-style-position"?: _$csstype.Property.ListStylePosition | undefined;
  3408. "list-style-type"?: _$csstype.Property.ListStyleType | undefined;
  3409. "margin-block-end"?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
  3410. "margin-block-start"?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
  3411. "margin-bottom"?: _$csstype.Property.MarginBottom<string | number> | undefined;
  3412. "margin-inline-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  3413. "margin-inline-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  3414. "margin-left"?: _$csstype.Property.MarginLeft<string | number> | undefined;
  3415. "margin-right"?: _$csstype.Property.MarginRight<string | number> | undefined;
  3416. "margin-top"?: _$csstype.Property.MarginTop<string | number> | undefined;
  3417. "margin-trim"?: _$csstype.Property.MarginTrim | undefined;
  3418. "marker-end"?: _$csstype.Property.MarkerEnd | undefined;
  3419. "marker-mid"?: _$csstype.Property.MarkerMid | undefined;
  3420. "marker-start"?: _$csstype.Property.MarkerStart | undefined;
  3421. "mask-border-mode"?: _$csstype.Property.MaskBorderMode | undefined;
  3422. "mask-border-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  3423. "mask-border-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
  3424. "mask-border-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
  3425. "mask-border-source"?: _$csstype.Property.MaskBorderSource | undefined;
  3426. "mask-border-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  3427. "mask-clip"?: _$csstype.Property.MaskClip | undefined;
  3428. "mask-composite"?: _$csstype.Property.MaskComposite | undefined;
  3429. "mask-image"?: _$csstype.Property.MaskImage | undefined;
  3430. "mask-mode"?: _$csstype.Property.MaskMode | undefined;
  3431. "mask-origin"?: _$csstype.Property.MaskOrigin | undefined;
  3432. "mask-position"?: _$csstype.Property.MaskPosition<string | number> | undefined;
  3433. "mask-repeat"?: _$csstype.Property.MaskRepeat | undefined;
  3434. "mask-size"?: _$csstype.Property.MaskSize<string | number> | undefined;
  3435. "mask-type"?: _$csstype.Property.MaskType | undefined;
  3436. "masonry-auto-flow"?: _$csstype.Property.MasonryAutoFlow | undefined;
  3437. "math-depth"?: _$csstype.Property.MathDepth | undefined;
  3438. "math-shift"?: _$csstype.Property.MathShift | undefined;
  3439. "math-style"?: _$csstype.Property.MathStyle | undefined;
  3440. "max-block-size"?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
  3441. "max-height"?: _$csstype.Property.MaxHeight<string | number> | undefined;
  3442. "max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  3443. "max-lines"?: _$csstype.Property.MaxLines | undefined;
  3444. "max-width"?: _$csstype.Property.MaxWidth<string | number> | undefined;
  3445. "min-block-size"?: _$csstype.Property.MinBlockSize<string | number> | undefined;
  3446. "min-height"?: _$csstype.Property.MinHeight<string | number> | undefined;
  3447. "min-inline-size"?: _$csstype.Property.MinInlineSize<string | number> | undefined;
  3448. "min-width"?: _$csstype.Property.MinWidth<string | number> | undefined;
  3449. "mix-blend-mode"?: _$csstype.Property.MixBlendMode | undefined;
  3450. "motion-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  3451. "motion-path"?: _$csstype.Property.OffsetPath | undefined;
  3452. "motion-rotation"?: _$csstype.Property.OffsetRotate | undefined;
  3453. "object-fit"?: _$csstype.Property.ObjectFit | undefined;
  3454. "object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  3455. "object-view-box"?: _$csstype.Property.ObjectViewBox | undefined;
  3456. "offset-anchor"?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
  3457. "offset-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
  3458. "offset-path"?: _$csstype.Property.OffsetPath | undefined;
  3459. "offset-position"?: _$csstype.Property.OffsetPosition<string | number> | undefined;
  3460. "offset-rotate"?: _$csstype.Property.OffsetRotate | undefined;
  3461. "offset-rotation"?: _$csstype.Property.OffsetRotate | undefined;
  3462. "outline-color"?: _$csstype.Property.OutlineColor | undefined;
  3463. "outline-offset"?: _$csstype.Property.OutlineOffset<string | number> | undefined;
  3464. "outline-style"?: _$csstype.Property.OutlineStyle | undefined;
  3465. "outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  3466. "overflow-anchor"?: _$csstype.Property.OverflowAnchor | undefined;
  3467. "overflow-block"?: _$csstype.Property.OverflowBlock | undefined;
  3468. "overflow-clip-box"?: _$csstype.Property.OverflowClipBox | undefined;
  3469. "overflow-clip-margin"?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
  3470. "overflow-inline"?: _$csstype.Property.OverflowInline | undefined;
  3471. "overflow-wrap"?: _$csstype.Property.OverflowWrap | undefined;
  3472. "overflow-x"?: _$csstype.Property.OverflowX | undefined;
  3473. "overflow-y"?: _$csstype.Property.OverflowY | undefined;
  3474. "overscroll-behavior-block"?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
  3475. "overscroll-behavior-inline"?: _$csstype.Property.OverscrollBehaviorInline | undefined;
  3476. "overscroll-behavior-x"?: _$csstype.Property.OverscrollBehaviorX | undefined;
  3477. "overscroll-behavior-y"?: _$csstype.Property.OverscrollBehaviorY | undefined;
  3478. "padding-block-end"?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
  3479. "padding-block-start"?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
  3480. "padding-bottom"?: _$csstype.Property.PaddingBottom<string | number> | undefined;
  3481. "padding-inline-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  3482. "padding-inline-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  3483. "padding-left"?: _$csstype.Property.PaddingLeft<string | number> | undefined;
  3484. "padding-right"?: _$csstype.Property.PaddingRight<string | number> | undefined;
  3485. "padding-top"?: _$csstype.Property.PaddingTop<string | number> | undefined;
  3486. "paint-order"?: _$csstype.Property.PaintOrder | undefined;
  3487. "perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  3488. "pointer-events"?: _$csstype.Property.PointerEvents | undefined;
  3489. "position-anchor"?: _$csstype.Property.PositionAnchor | undefined;
  3490. "position-area"?: _$csstype.Property.PositionArea | undefined;
  3491. "position-try-fallbacks"?: _$csstype.Property.PositionTryFallbacks | undefined;
  3492. "position-try-order"?: _$csstype.Property.PositionTryOrder | undefined;
  3493. "position-visibility"?: _$csstype.Property.PositionVisibility | undefined;
  3494. "print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
  3495. "row-gap"?: _$csstype.Property.RowGap<string | number> | undefined;
  3496. "ruby-align"?: _$csstype.Property.RubyAlign | undefined;
  3497. "ruby-merge"?: _$csstype.Property.RubyMerge | undefined;
  3498. "ruby-overhang"?: _$csstype.Property.RubyOverhang | undefined;
  3499. "ruby-position"?: _$csstype.Property.RubyPosition | undefined;
  3500. "scroll-behavior"?: _$csstype.Property.ScrollBehavior | undefined;
  3501. "scroll-initial-target"?: _$csstype.Property.ScrollInitialTarget | undefined;
  3502. "scroll-margin-block-end"?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
  3503. "scroll-margin-block-start"?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
  3504. "scroll-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  3505. "scroll-margin-inline-end"?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
  3506. "scroll-margin-inline-start"?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
  3507. "scroll-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  3508. "scroll-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  3509. "scroll-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  3510. "scroll-padding-block-end"?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
  3511. "scroll-padding-block-start"?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
  3512. "scroll-padding-bottom"?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
  3513. "scroll-padding-inline-end"?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
  3514. "scroll-padding-inline-start"?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
  3515. "scroll-padding-left"?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
  3516. "scroll-padding-right"?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
  3517. "scroll-padding-top"?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
  3518. "scroll-snap-align"?: _$csstype.Property.ScrollSnapAlign | undefined;
  3519. "scroll-snap-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
  3520. "scroll-snap-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
  3521. "scroll-snap-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
  3522. "scroll-snap-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
  3523. "scroll-snap-stop"?: _$csstype.Property.ScrollSnapStop | undefined;
  3524. "scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
  3525. "scroll-timeline-axis"?: _$csstype.Property.ScrollTimelineAxis | undefined;
  3526. "scroll-timeline-name"?: _$csstype.Property.ScrollTimelineName | undefined;
  3527. "scrollbar-color"?: _$csstype.Property.ScrollbarColor | undefined;
  3528. "scrollbar-gutter"?: _$csstype.Property.ScrollbarGutter | undefined;
  3529. "scrollbar-width"?: _$csstype.Property.ScrollbarWidth | undefined;
  3530. "shape-image-threshold"?: _$csstype.Property.ShapeImageThreshold | undefined;
  3531. "shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  3532. "shape-outside"?: _$csstype.Property.ShapeOutside | undefined;
  3533. "shape-rendering"?: _$csstype.Property.ShapeRendering | undefined;
  3534. "speak-as"?: _$csstype.Property.SpeakAs | undefined;
  3535. "stop-color"?: _$csstype.Property.StopColor | undefined;
  3536. "stop-opacity"?: _$csstype.Property.StopOpacity | undefined;
  3537. "stroke-color"?: _$csstype.Property.StrokeColor | undefined;
  3538. "stroke-dasharray"?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
  3539. "stroke-dashoffset"?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
  3540. "stroke-linecap"?: _$csstype.Property.StrokeLinecap | undefined;
  3541. "stroke-linejoin"?: _$csstype.Property.StrokeLinejoin | undefined;
  3542. "stroke-miterlimit"?: _$csstype.Property.StrokeMiterlimit | undefined;
  3543. "stroke-opacity"?: _$csstype.Property.StrokeOpacity | undefined;
  3544. "stroke-width"?: _$csstype.Property.StrokeWidth<string | number> | undefined;
  3545. "tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
  3546. "table-layout"?: _$csstype.Property.TableLayout | undefined;
  3547. "text-align"?: _$csstype.Property.TextAlign | undefined;
  3548. "text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
  3549. "text-anchor"?: _$csstype.Property.TextAnchor | undefined;
  3550. "text-autospace"?: _$csstype.Property.TextAutospace | undefined;
  3551. "text-box"?: _$csstype.Property.TextBox | undefined;
  3552. "text-box-edge"?: _$csstype.Property.TextBoxEdge | undefined;
  3553. "text-box-trim"?: _$csstype.Property.TextBoxTrim | undefined;
  3554. "text-combine-upright"?: _$csstype.Property.TextCombineUpright | undefined;
  3555. "text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
  3556. "text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
  3557. "text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
  3558. "text-decoration-skip-ink"?: _$csstype.Property.TextDecorationSkipInk | undefined;
  3559. "text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
  3560. "text-decoration-thickness"?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
  3561. "text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
  3562. "text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
  3563. "text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
  3564. "text-indent"?: _$csstype.Property.TextIndent<string | number> | undefined;
  3565. "text-justify"?: _$csstype.Property.TextJustify | undefined;
  3566. "text-orientation"?: _$csstype.Property.TextOrientation | undefined;
  3567. "text-overflow"?: _$csstype.Property.TextOverflow | undefined;
  3568. "text-rendering"?: _$csstype.Property.TextRendering | undefined;
  3569. "text-shadow"?: _$csstype.Property.TextShadow | undefined;
  3570. "text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
  3571. "text-spacing-trim"?: _$csstype.Property.TextSpacingTrim | undefined;
  3572. "text-transform"?: _$csstype.Property.TextTransform | undefined;
  3573. "text-underline-offset"?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
  3574. "text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
  3575. "text-wrap-mode"?: _$csstype.Property.TextWrapMode | undefined;
  3576. "text-wrap-style"?: _$csstype.Property.TextWrapStyle | undefined;
  3577. "timeline-scope"?: _$csstype.Property.TimelineScope | undefined;
  3578. "touch-action"?: _$csstype.Property.TouchAction | undefined;
  3579. "transform-box"?: _$csstype.Property.TransformBox | undefined;
  3580. "transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  3581. "transform-style"?: _$csstype.Property.TransformStyle | undefined;
  3582. "transition-behavior"?: _$csstype.Property.TransitionBehavior | undefined;
  3583. "transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  3584. "transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  3585. "transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  3586. "transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  3587. "unicode-bidi"?: _$csstype.Property.UnicodeBidi | undefined;
  3588. "user-select"?: _$csstype.Property.UserSelect | undefined;
  3589. "vector-effect"?: _$csstype.Property.VectorEffect | undefined;
  3590. "vertical-align"?: _$csstype.Property.VerticalAlign<string | number> | undefined;
  3591. "view-timeline-axis"?: _$csstype.Property.ViewTimelineAxis | undefined;
  3592. "view-timeline-inset"?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
  3593. "view-timeline-name"?: _$csstype.Property.ViewTimelineName | undefined;
  3594. "view-transition-class"?: _$csstype.Property.ViewTransitionClass | undefined;
  3595. "view-transition-name"?: _$csstype.Property.ViewTransitionName | undefined;
  3596. "white-space"?: _$csstype.Property.WhiteSpace | undefined;
  3597. "white-space-collapse"?: _$csstype.Property.WhiteSpaceCollapse | undefined;
  3598. "will-change"?: _$csstype.Property.WillChange | undefined;
  3599. "word-break"?: _$csstype.Property.WordBreak | undefined;
  3600. "word-spacing"?: _$csstype.Property.WordSpacing<string | number> | undefined;
  3601. "word-wrap"?: _$csstype.Property.WordWrap | undefined;
  3602. "writing-mode"?: _$csstype.Property.WritingMode | undefined;
  3603. "z-index"?: _$csstype.Property.ZIndex | undefined;
  3604. "animation-range"?: _$csstype.Property.AnimationRange<string | number> | undefined;
  3605. "background-position"?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
  3606. "border-block"?: _$csstype.Property.BorderBlock<string | number> | undefined;
  3607. "border-block-color"?: _$csstype.Property.BorderBlockColor | undefined;
  3608. "border-block-end"?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
  3609. "border-block-start"?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
  3610. "border-block-style"?: _$csstype.Property.BorderBlockStyle | undefined;
  3611. "border-block-width"?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
  3612. "border-bottom"?: _$csstype.Property.BorderBottom<string | number> | undefined;
  3613. "border-color"?: _$csstype.Property.BorderColor | undefined;
  3614. "border-image"?: _$csstype.Property.BorderImage | undefined;
  3615. "border-inline"?: _$csstype.Property.BorderInline<string | number> | undefined;
  3616. "border-inline-color"?: _$csstype.Property.BorderInlineColor | undefined;
  3617. "border-inline-end"?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
  3618. "border-inline-start"?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
  3619. "border-inline-style"?: _$csstype.Property.BorderInlineStyle | undefined;
  3620. "border-inline-width"?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
  3621. "border-left"?: _$csstype.Property.BorderLeft<string | number> | undefined;
  3622. "border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
  3623. "border-right"?: _$csstype.Property.BorderRight<string | number> | undefined;
  3624. "border-style"?: _$csstype.Property.BorderStyle | undefined;
  3625. "border-top"?: _$csstype.Property.BorderTop<string | number> | undefined;
  3626. "border-width"?: _$csstype.Property.BorderWidth<string | number> | undefined;
  3627. "column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
  3628. "contain-intrinsic-size"?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
  3629. "flex-flow"?: _$csstype.Property.FlexFlow | undefined;
  3630. "grid-area"?: _$csstype.Property.GridArea | undefined;
  3631. "grid-column"?: _$csstype.Property.GridColumn | undefined;
  3632. "grid-row"?: _$csstype.Property.GridRow | undefined;
  3633. "grid-template"?: _$csstype.Property.GridTemplate | undefined;
  3634. "inset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
  3635. "inset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
  3636. "line-clamp"?: _$csstype.Property.LineClamp | undefined;
  3637. "list-style"?: _$csstype.Property.ListStyle | undefined;
  3638. "margin-block"?: _$csstype.Property.MarginBlock<string | number> | undefined;
  3639. "margin-inline"?: _$csstype.Property.MarginInline<string | number> | undefined;
  3640. "mask-border"?: _$csstype.Property.MaskBorder | undefined;
  3641. "overscroll-behavior"?: _$csstype.Property.OverscrollBehavior | undefined;
  3642. "padding-block"?: _$csstype.Property.PaddingBlock<string | number> | undefined;
  3643. "padding-inline"?: _$csstype.Property.PaddingInline<string | number> | undefined;
  3644. "place-content"?: _$csstype.Property.PlaceContent | undefined;
  3645. "place-items"?: _$csstype.Property.PlaceItems | undefined;
  3646. "place-self"?: _$csstype.Property.PlaceSelf | undefined;
  3647. "position-try"?: _$csstype.Property.PositionTry | undefined;
  3648. "scroll-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  3649. "scroll-margin-block"?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
  3650. "scroll-margin-inline"?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
  3651. "scroll-padding"?: _$csstype.Property.ScrollPadding<string | number> | undefined;
  3652. "scroll-padding-block"?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
  3653. "scroll-padding-inline"?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
  3654. "scroll-snap-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
  3655. "scroll-timeline"?: _$csstype.Property.ScrollTimeline | undefined;
  3656. "text-decoration"?: _$csstype.Property.TextDecoration<string | number> | undefined;
  3657. "text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
  3658. "text-wrap"?: _$csstype.Property.TextWrap | undefined;
  3659. "view-timeline"?: _$csstype.Property.ViewTimeline | undefined;
  3660. "-moz-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  3661. "-moz-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  3662. "-moz-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  3663. "-moz-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  3664. "-moz-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  3665. "-moz-animation-name"?: _$csstype.Property.AnimationName | undefined;
  3666. "-moz-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  3667. "-moz-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  3668. "-moz-appearance"?: _$csstype.Property.MozAppearance | undefined;
  3669. "-moz-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
  3670. "-moz-binding"?: _$csstype.Property.MozBinding | undefined;
  3671. "-moz-border-bottom-colors"?: _$csstype.Property.MozBorderBottomColors | undefined;
  3672. "-moz-border-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
  3673. "-moz-border-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
  3674. "-moz-border-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
  3675. "-moz-border-left-colors"?: _$csstype.Property.MozBorderLeftColors | undefined;
  3676. "-moz-border-right-colors"?: _$csstype.Property.MozBorderRightColors | undefined;
  3677. "-moz-border-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
  3678. "-moz-border-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
  3679. "-moz-border-top-colors"?: _$csstype.Property.MozBorderTopColors | undefined;
  3680. "-moz-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
  3681. "-moz-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
  3682. "-moz-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
  3683. "-moz-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  3684. "-moz-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  3685. "-moz-context-properties"?: _$csstype.Property.MozContextProperties | undefined;
  3686. "-moz-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
  3687. "-moz-font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
  3688. "-moz-hyphens"?: _$csstype.Property.Hyphens | undefined;
  3689. "-moz-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  3690. "-moz-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  3691. "-moz-orient"?: _$csstype.Property.MozOrient | undefined;
  3692. "-moz-osx-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
  3693. "-moz-outline-radius-bottomleft"?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
  3694. "-moz-outline-radius-bottomright"?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
  3695. "-moz-outline-radius-topleft"?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
  3696. "-moz-outline-radius-topright"?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
  3697. "-moz-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  3698. "-moz-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  3699. "-moz-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
  3700. "-moz-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  3701. "-moz-stack-sizing"?: _$csstype.Property.MozStackSizing | undefined;
  3702. "-moz-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
  3703. "-moz-text-blink"?: _$csstype.Property.MozTextBlink | undefined;
  3704. "-moz-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
  3705. "-moz-transform"?: _$csstype.Property.Transform | undefined;
  3706. "-moz-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  3707. "-moz-transform-style"?: _$csstype.Property.TransformStyle | undefined;
  3708. "-moz-user-modify"?: _$csstype.Property.MozUserModify | undefined;
  3709. "-moz-user-select"?: _$csstype.Property.UserSelect | undefined;
  3710. "-moz-window-dragging"?: _$csstype.Property.MozWindowDragging | undefined;
  3711. "-moz-window-shadow"?: _$csstype.Property.MozWindowShadow | undefined;
  3712. "-ms-accelerator"?: _$csstype.Property.MsAccelerator | undefined;
  3713. "-ms-block-progression"?: _$csstype.Property.MsBlockProgression | undefined;
  3714. "-ms-content-zoom-chaining"?: _$csstype.Property.MsContentZoomChaining | undefined;
  3715. "-ms-content-zoom-limit-max"?: _$csstype.Property.MsContentZoomLimitMax | undefined;
  3716. "-ms-content-zoom-limit-min"?: _$csstype.Property.MsContentZoomLimitMin | undefined;
  3717. "-ms-content-zoom-snap-points"?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
  3718. "-ms-content-zoom-snap-type"?: _$csstype.Property.MsContentZoomSnapType | undefined;
  3719. "-ms-content-zooming"?: _$csstype.Property.MsContentZooming | undefined;
  3720. "-ms-filter"?: _$csstype.Property.MsFilter | undefined;
  3721. "-ms-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
  3722. "-ms-flex-positive"?: _$csstype.Property.FlexGrow | undefined;
  3723. "-ms-flow-from"?: _$csstype.Property.MsFlowFrom | undefined;
  3724. "-ms-flow-into"?: _$csstype.Property.MsFlowInto | undefined;
  3725. "-ms-grid-columns"?: _$csstype.Property.MsGridColumns<string | number> | undefined;
  3726. "-ms-grid-rows"?: _$csstype.Property.MsGridRows<string | number> | undefined;
  3727. "-ms-high-contrast-adjust"?: _$csstype.Property.MsHighContrastAdjust | undefined;
  3728. "-ms-hyphenate-limit-chars"?: _$csstype.Property.MsHyphenateLimitChars | undefined;
  3729. "-ms-hyphenate-limit-lines"?: _$csstype.Property.MsHyphenateLimitLines | undefined;
  3730. "-ms-hyphenate-limit-zone"?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
  3731. "-ms-hyphens"?: _$csstype.Property.Hyphens | undefined;
  3732. "-ms-ime-align"?: _$csstype.Property.MsImeAlign | undefined;
  3733. "-ms-line-break"?: _$csstype.Property.LineBreak | undefined;
  3734. "-ms-order"?: _$csstype.Property.Order | undefined;
  3735. "-ms-overflow-style"?: _$csstype.Property.MsOverflowStyle | undefined;
  3736. "-ms-overflow-x"?: _$csstype.Property.OverflowX | undefined;
  3737. "-ms-overflow-y"?: _$csstype.Property.OverflowY | undefined;
  3738. "-ms-scroll-chaining"?: _$csstype.Property.MsScrollChaining | undefined;
  3739. "-ms-scroll-limit-x-max"?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
  3740. "-ms-scroll-limit-x-min"?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
  3741. "-ms-scroll-limit-y-max"?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
  3742. "-ms-scroll-limit-y-min"?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
  3743. "-ms-scroll-rails"?: _$csstype.Property.MsScrollRails | undefined;
  3744. "-ms-scroll-snap-points-x"?: _$csstype.Property.MsScrollSnapPointsX | undefined;
  3745. "-ms-scroll-snap-points-y"?: _$csstype.Property.MsScrollSnapPointsY | undefined;
  3746. "-ms-scroll-snap-type"?: _$csstype.Property.MsScrollSnapType | undefined;
  3747. "-ms-scroll-translation"?: _$csstype.Property.MsScrollTranslation | undefined;
  3748. "-ms-scrollbar-3dlight-color"?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
  3749. "-ms-scrollbar-arrow-color"?: _$csstype.Property.MsScrollbarArrowColor | undefined;
  3750. "-ms-scrollbar-base-color"?: _$csstype.Property.MsScrollbarBaseColor | undefined;
  3751. "-ms-scrollbar-darkshadow-color"?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
  3752. "-ms-scrollbar-face-color"?: _$csstype.Property.MsScrollbarFaceColor | undefined;
  3753. "-ms-scrollbar-highlight-color"?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
  3754. "-ms-scrollbar-shadow-color"?: _$csstype.Property.MsScrollbarShadowColor | undefined;
  3755. "-ms-scrollbar-track-color"?: _$csstype.Property.MsScrollbarTrackColor | undefined;
  3756. "-ms-text-autospace"?: _$csstype.Property.MsTextAutospace | undefined;
  3757. "-ms-text-combine-horizontal"?: _$csstype.Property.TextCombineUpright | undefined;
  3758. "-ms-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
  3759. "-ms-touch-action"?: _$csstype.Property.TouchAction | undefined;
  3760. "-ms-touch-select"?: _$csstype.Property.MsTouchSelect | undefined;
  3761. "-ms-transform"?: _$csstype.Property.Transform | undefined;
  3762. "-ms-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  3763. "-ms-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  3764. "-ms-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  3765. "-ms-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  3766. "-ms-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  3767. "-ms-user-select"?: _$csstype.Property.MsUserSelect | undefined;
  3768. "-ms-word-break"?: _$csstype.Property.WordBreak | undefined;
  3769. "-ms-wrap-flow"?: _$csstype.Property.MsWrapFlow | undefined;
  3770. "-ms-wrap-margin"?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
  3771. "-ms-wrap-through"?: _$csstype.Property.MsWrapThrough | undefined;
  3772. "-ms-writing-mode"?: _$csstype.Property.WritingMode | undefined;
  3773. "-webkit-align-content"?: _$csstype.Property.AlignContent | undefined;
  3774. "-webkit-align-items"?: _$csstype.Property.AlignItems | undefined;
  3775. "-webkit-align-self"?: _$csstype.Property.AlignSelf | undefined;
  3776. "-webkit-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  3777. "-webkit-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  3778. "-webkit-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  3779. "-webkit-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  3780. "-webkit-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  3781. "-webkit-animation-name"?: _$csstype.Property.AnimationName | undefined;
  3782. "-webkit-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  3783. "-webkit-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  3784. "-webkit-appearance"?: _$csstype.Property.WebkitAppearance | undefined;
  3785. "-webkit-backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
  3786. "-webkit-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
  3787. "-webkit-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
  3788. "-webkit-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
  3789. "-webkit-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  3790. "-webkit-border-before-color"?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
  3791. "-webkit-border-before-style"?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
  3792. "-webkit-border-before-width"?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
  3793. "-webkit-border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  3794. "-webkit-border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  3795. "-webkit-border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
  3796. "-webkit-border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  3797. "-webkit-border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  3798. "-webkit-box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
  3799. "-webkit-box-reflect"?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
  3800. "-webkit-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
  3801. "-webkit-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
  3802. "-webkit-clip-path"?: _$csstype.Property.ClipPath | undefined;
  3803. "-webkit-column-count"?: _$csstype.Property.ColumnCount | undefined;
  3804. "-webkit-column-fill"?: _$csstype.Property.ColumnFill | undefined;
  3805. "-webkit-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
  3806. "-webkit-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
  3807. "-webkit-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
  3808. "-webkit-column-span"?: _$csstype.Property.ColumnSpan | undefined;
  3809. "-webkit-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
  3810. "-webkit-filter"?: _$csstype.Property.Filter | undefined;
  3811. "-webkit-flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
  3812. "-webkit-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
  3813. "-webkit-flex-grow"?: _$csstype.Property.FlexGrow | undefined;
  3814. "-webkit-flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
  3815. "-webkit-flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
  3816. "-webkit-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
  3817. "-webkit-font-kerning"?: _$csstype.Property.FontKerning | undefined;
  3818. "-webkit-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
  3819. "-webkit-font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
  3820. "-webkit-hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
  3821. "-webkit-hyphens"?: _$csstype.Property.Hyphens | undefined;
  3822. "-webkit-initial-letter"?: _$csstype.Property.InitialLetter | undefined;
  3823. "-webkit-justify-content"?: _$csstype.Property.JustifyContent | undefined;
  3824. "-webkit-line-break"?: _$csstype.Property.LineBreak | undefined;
  3825. "-webkit-line-clamp"?: _$csstype.Property.WebkitLineClamp | undefined;
  3826. "-webkit-logical-height"?: _$csstype.Property.BlockSize<string | number> | undefined;
  3827. "-webkit-logical-width"?: _$csstype.Property.InlineSize<string | number> | undefined;
  3828. "-webkit-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
  3829. "-webkit-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
  3830. "-webkit-mask-attachment"?: _$csstype.Property.WebkitMaskAttachment | undefined;
  3831. "-webkit-mask-box-image-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
  3832. "-webkit-mask-box-image-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
  3833. "-webkit-mask-box-image-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
  3834. "-webkit-mask-box-image-source"?: _$csstype.Property.MaskBorderSource | undefined;
  3835. "-webkit-mask-box-image-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
  3836. "-webkit-mask-clip"?: _$csstype.Property.WebkitMaskClip | undefined;
  3837. "-webkit-mask-composite"?: _$csstype.Property.WebkitMaskComposite | undefined;
  3838. "-webkit-mask-image"?: _$csstype.Property.WebkitMaskImage | undefined;
  3839. "-webkit-mask-origin"?: _$csstype.Property.WebkitMaskOrigin | undefined;
  3840. "-webkit-mask-position"?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
  3841. "-webkit-mask-position-x"?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
  3842. "-webkit-mask-position-y"?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
  3843. "-webkit-mask-repeat"?: _$csstype.Property.WebkitMaskRepeat | undefined;
  3844. "-webkit-mask-repeat-x"?: _$csstype.Property.WebkitMaskRepeatX | undefined;
  3845. "-webkit-mask-repeat-y"?: _$csstype.Property.WebkitMaskRepeatY | undefined;
  3846. "-webkit-mask-size"?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
  3847. "-webkit-max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
  3848. "-webkit-order"?: _$csstype.Property.Order | undefined;
  3849. "-webkit-overflow-scrolling"?: _$csstype.Property.WebkitOverflowScrolling | undefined;
  3850. "-webkit-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
  3851. "-webkit-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
  3852. "-webkit-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
  3853. "-webkit-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
  3854. "-webkit-print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
  3855. "-webkit-ruby-position"?: _$csstype.Property.RubyPosition | undefined;
  3856. "-webkit-scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
  3857. "-webkit-shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
  3858. "-webkit-tap-highlight-color"?: _$csstype.Property.WebkitTapHighlightColor | undefined;
  3859. "-webkit-text-combine"?: _$csstype.Property.TextCombineUpright | undefined;
  3860. "-webkit-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
  3861. "-webkit-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
  3862. "-webkit-text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
  3863. "-webkit-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
  3864. "-webkit-text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
  3865. "-webkit-text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
  3866. "-webkit-text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
  3867. "-webkit-text-fill-color"?: _$csstype.Property.WebkitTextFillColor | undefined;
  3868. "-webkit-text-orientation"?: _$csstype.Property.TextOrientation | undefined;
  3869. "-webkit-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
  3870. "-webkit-text-stroke-color"?: _$csstype.Property.WebkitTextStrokeColor | undefined;
  3871. "-webkit-text-stroke-width"?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
  3872. "-webkit-text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
  3873. "-webkit-touch-callout"?: _$csstype.Property.WebkitTouchCallout | undefined;
  3874. "-webkit-transform"?: _$csstype.Property.Transform | undefined;
  3875. "-webkit-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  3876. "-webkit-transform-style"?: _$csstype.Property.TransformStyle | undefined;
  3877. "-webkit-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  3878. "-webkit-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  3879. "-webkit-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  3880. "-webkit-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  3881. "-webkit-user-modify"?: _$csstype.Property.WebkitUserModify | undefined;
  3882. "-webkit-user-select"?: _$csstype.Property.WebkitUserSelect | undefined;
  3883. "-webkit-writing-mode"?: _$csstype.Property.WritingMode | undefined;
  3884. "-moz-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
  3885. "-moz-border-image"?: _$csstype.Property.BorderImage | undefined;
  3886. "-moz-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
  3887. "-moz-columns"?: _$csstype.Property.Columns<string | number> | undefined;
  3888. "-moz-outline-radius"?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
  3889. "-moz-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  3890. "-ms-content-zoom-limit"?: _$csstype.Property.MsContentZoomLimit | undefined;
  3891. "-ms-content-zoom-snap"?: _$csstype.Property.MsContentZoomSnap | undefined;
  3892. "-ms-flex"?: _$csstype.Property.Flex<string | number> | undefined;
  3893. "-ms-scroll-limit"?: _$csstype.Property.MsScrollLimit | undefined;
  3894. "-ms-scroll-snap-x"?: _$csstype.Property.MsScrollSnapX | undefined;
  3895. "-ms-scroll-snap-y"?: _$csstype.Property.MsScrollSnapY | undefined;
  3896. "-ms-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  3897. "-webkit-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
  3898. "-webkit-border-before"?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
  3899. "-webkit-border-image"?: _$csstype.Property.BorderImage | undefined;
  3900. "-webkit-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
  3901. "-webkit-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
  3902. "-webkit-columns"?: _$csstype.Property.Columns<string | number> | undefined;
  3903. "-webkit-flex"?: _$csstype.Property.Flex<string | number> | undefined;
  3904. "-webkit-flex-flow"?: _$csstype.Property.FlexFlow | undefined;
  3905. "-webkit-mask"?: _$csstype.Property.WebkitMask<string | number> | undefined;
  3906. "-webkit-mask-box-image"?: _$csstype.Property.MaskBorder | undefined;
  3907. "-webkit-text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
  3908. "-webkit-text-stroke"?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
  3909. "-webkit-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  3910. "box-align"?: _$csstype.Property.BoxAlign | undefined;
  3911. "box-direction"?: _$csstype.Property.BoxDirection | undefined;
  3912. "box-flex"?: _$csstype.Property.BoxFlex | undefined;
  3913. "box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
  3914. "box-lines"?: _$csstype.Property.BoxLines | undefined;
  3915. "box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  3916. "box-orient"?: _$csstype.Property.BoxOrient | undefined;
  3917. "box-pack"?: _$csstype.Property.BoxPack | undefined;
  3918. "font-stretch"?: _$csstype.Property.FontStretch | undefined;
  3919. "grid-column-gap"?: _$csstype.Property.GridColumnGap<string | number> | undefined;
  3920. "grid-gap"?: _$csstype.Property.GridGap<string | number> | undefined;
  3921. "grid-row-gap"?: _$csstype.Property.GridRowGap<string | number> | undefined;
  3922. "ime-mode"?: _$csstype.Property.ImeMode | undefined;
  3923. "inset-area"?: _$csstype.Property.PositionArea | undefined;
  3924. "offset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
  3925. "offset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
  3926. "offset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
  3927. "offset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
  3928. "offset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
  3929. "offset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
  3930. "page-break-after"?: _$csstype.Property.PageBreakAfter | undefined;
  3931. "page-break-before"?: _$csstype.Property.PageBreakBefore | undefined;
  3932. "page-break-inside"?: _$csstype.Property.PageBreakInside | undefined;
  3933. "position-try-options"?: _$csstype.Property.PositionTryFallbacks | undefined;
  3934. "scroll-snap-coordinate"?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
  3935. "scroll-snap-destination"?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
  3936. "scroll-snap-points-x"?: _$csstype.Property.ScrollSnapPointsX | undefined;
  3937. "scroll-snap-points-y"?: _$csstype.Property.ScrollSnapPointsY | undefined;
  3938. "scroll-snap-type-x"?: _$csstype.Property.ScrollSnapTypeX | undefined;
  3939. "scroll-snap-type-y"?: _$csstype.Property.ScrollSnapTypeY | undefined;
  3940. "-khtml-box-align"?: _$csstype.Property.BoxAlign | undefined;
  3941. "-khtml-box-direction"?: _$csstype.Property.BoxDirection | undefined;
  3942. "-khtml-box-flex"?: _$csstype.Property.BoxFlex | undefined;
  3943. "-khtml-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
  3944. "-khtml-box-lines"?: _$csstype.Property.BoxLines | undefined;
  3945. "-khtml-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  3946. "-khtml-box-orient"?: _$csstype.Property.BoxOrient | undefined;
  3947. "-khtml-box-pack"?: _$csstype.Property.BoxPack | undefined;
  3948. "-khtml-line-break"?: _$csstype.Property.LineBreak | undefined;
  3949. "-khtml-opacity"?: _$csstype.Property.Opacity | undefined;
  3950. "-khtml-user-select"?: _$csstype.Property.UserSelect | undefined;
  3951. "-moz-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
  3952. "-moz-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
  3953. "-moz-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  3954. "-moz-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
  3955. "-moz-border-radius-bottomleft"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
  3956. "-moz-border-radius-bottomright"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
  3957. "-moz-border-radius-topleft"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
  3958. "-moz-border-radius-topright"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
  3959. "-moz-box-align"?: _$csstype.Property.BoxAlign | undefined;
  3960. "-moz-box-direction"?: _$csstype.Property.BoxDirection | undefined;
  3961. "-moz-box-flex"?: _$csstype.Property.BoxFlex | undefined;
  3962. "-moz-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  3963. "-moz-box-orient"?: _$csstype.Property.BoxOrient | undefined;
  3964. "-moz-box-pack"?: _$csstype.Property.BoxPack | undefined;
  3965. "-moz-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
  3966. "-moz-column-count"?: _$csstype.Property.ColumnCount | undefined;
  3967. "-moz-column-fill"?: _$csstype.Property.ColumnFill | undefined;
  3968. "-moz-float-edge"?: _$csstype.Property.MozFloatEdge | undefined;
  3969. "-moz-force-broken-image-icon"?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
  3970. "-moz-opacity"?: _$csstype.Property.Opacity | undefined;
  3971. "-moz-outline"?: _$csstype.Property.Outline<string | number> | undefined;
  3972. "-moz-outline-color"?: _$csstype.Property.OutlineColor | undefined;
  3973. "-moz-outline-style"?: _$csstype.Property.OutlineStyle | undefined;
  3974. "-moz-outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
  3975. "-moz-text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
  3976. "-moz-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
  3977. "-moz-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
  3978. "-moz-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
  3979. "-moz-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  3980. "-moz-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  3981. "-moz-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  3982. "-moz-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  3983. "-moz-user-focus"?: _$csstype.Property.MozUserFocus | undefined;
  3984. "-moz-user-input"?: _$csstype.Property.MozUserInput | undefined;
  3985. "-ms-ime-mode"?: _$csstype.Property.ImeMode | undefined;
  3986. "-o-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
  3987. "-o-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
  3988. "-o-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
  3989. "-o-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
  3990. "-o-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
  3991. "-o-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
  3992. "-o-animation-name"?: _$csstype.Property.AnimationName | undefined;
  3993. "-o-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
  3994. "-o-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
  3995. "-o-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
  3996. "-o-border-image"?: _$csstype.Property.BorderImage | undefined;
  3997. "-o-object-fit"?: _$csstype.Property.ObjectFit | undefined;
  3998. "-o-object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
  3999. "-o-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
  4000. "-o-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
  4001. "-o-transform"?: _$csstype.Property.Transform | undefined;
  4002. "-o-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
  4003. "-o-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
  4004. "-o-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
  4005. "-o-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
  4006. "-o-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
  4007. "-o-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
  4008. "-webkit-box-align"?: _$csstype.Property.BoxAlign | undefined;
  4009. "-webkit-box-direction"?: _$csstype.Property.BoxDirection | undefined;
  4010. "-webkit-box-flex"?: _$csstype.Property.BoxFlex | undefined;
  4011. "-webkit-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
  4012. "-webkit-box-lines"?: _$csstype.Property.BoxLines | undefined;
  4013. "-webkit-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
  4014. "-webkit-box-orient"?: _$csstype.Property.BoxOrient | undefined;
  4015. "-webkit-box-pack"?: _$csstype.Property.BoxPack | undefined;
  4016. "color-interpolation"?: _$csstype.Property.ColorInterpolation | undefined;
  4017. "color-rendering"?: _$csstype.Property.ColorRendering | undefined;
  4018. "glyph-orientation-vertical"?: _$csstype.Property.GlyphOrientationVertical | undefined;
  4019. }>;
  4020. showInput: _$vue.Ref<boolean, boolean>;
  4021. inputValue: _$vue.Ref<string, string>;
  4022. inputPlaceholder: _$vue.Ref<string, string>;
  4023. inputType: _$vue.Ref<InputType, InputType>;
  4024. inputPattern: _$vue.Ref<RegExp | null, RegExp | null>;
  4025. inputValidator: _$vue.Ref<MessageBoxInputValidator, MessageBoxInputValidator>;
  4026. inputErrorMessage: _$vue.Ref<string, string>;
  4027. showConfirmButton: _$vue.Ref<boolean, boolean>;
  4028. showCancelButton: _$vue.Ref<boolean, boolean>;
  4029. action: _$vue.Ref<Action, Action>;
  4030. dangerouslyUseHTMLString: _$vue.Ref<boolean, boolean>;
  4031. confirmButtonText: _$vue.Ref<string, string>;
  4032. cancelButtonText: _$vue.Ref<string, string>;
  4033. confirmButtonType: _$vue.Ref<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger", "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
  4034. cancelButtonType: _$vue.Ref<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger", "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
  4035. confirmButtonLoading: _$vue.Ref<boolean, boolean>;
  4036. cancelButtonLoading: _$vue.Ref<boolean, boolean>;
  4037. confirmButtonLoadingIcon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  4038. new (...args: any[]): any;
  4039. __isFragment?: never;
  4040. __isTeleport?: never;
  4041. __isSuspense?: never;
  4042. } | {
  4043. [x: string]: any;
  4044. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  4045. attrs: {
  4046. [x: string]: unknown;
  4047. };
  4048. slots: Readonly<{
  4049. [name: string]: _$vue.Slot<any> | undefined;
  4050. }>;
  4051. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  4052. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  4053. }) => any) | undefined;
  4054. name?: string | undefined;
  4055. template?: string | object | undefined;
  4056. render?: Function | undefined;
  4057. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  4058. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  4059. inheritAttrs?: boolean | undefined;
  4060. emits?: any;
  4061. slots?: {} | undefined;
  4062. expose?: string[] | undefined;
  4063. serverPrefetch?: (() => void | Promise<any>) | undefined;
  4064. compilerOptions?: {
  4065. isCustomElement?: ((tag: string) => boolean) | undefined;
  4066. whitespace?: "preserve" | "condense" | undefined;
  4067. comments?: boolean | undefined;
  4068. delimiters?: [string, string] | undefined;
  4069. } | undefined;
  4070. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  4071. __isFragment?: never | undefined;
  4072. __isTeleport?: never | undefined;
  4073. __isSuspense?: never | undefined;
  4074. __defaults?: {} | undefined;
  4075. compatConfig?: {
  4076. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  4077. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  4078. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  4079. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  4080. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  4081. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  4082. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  4083. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  4084. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  4085. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  4086. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  4087. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  4088. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  4089. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  4090. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  4091. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  4092. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  4093. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  4094. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  4095. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  4096. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  4097. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  4098. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  4099. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  4100. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  4101. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  4102. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  4103. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  4104. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  4105. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  4106. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  4107. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  4108. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  4109. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  4110. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  4111. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  4112. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  4113. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  4114. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  4115. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  4116. FILTERS?: boolean | "suppress-warning" | undefined;
  4117. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  4118. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  4119. } | undefined;
  4120. data?: ((this: any, vm: any) => any) | undefined;
  4121. computed?: _$vue.ComputedOptions | undefined;
  4122. methods?: _$vue.MethodOptions | undefined;
  4123. watch?: {
  4124. [x: string]: (string | _$vue.WatchCallback | ({
  4125. handler: _$vue.WatchCallback | string;
  4126. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  4127. handler: _$vue.WatchCallback | string;
  4128. } & _$vue.WatchOptions<boolean>))[];
  4129. } | undefined;
  4130. provide?: _$vue.ComponentProvideOptions | undefined;
  4131. inject?: {} | string[] | undefined;
  4132. filters?: Record<string, Function> | undefined;
  4133. mixins?: any[] | undefined;
  4134. extends?: any;
  4135. beforeCreate?: (() => any) | undefined;
  4136. created?: (() => any) | undefined;
  4137. beforeMount?: (() => any) | undefined;
  4138. mounted?: (() => any) | undefined;
  4139. beforeUpdate?: (() => any) | undefined;
  4140. updated?: (() => any) | undefined;
  4141. activated?: (() => any) | undefined;
  4142. deactivated?: (() => any) | undefined;
  4143. beforeDestroy?: (() => any) | undefined;
  4144. beforeUnmount?: (() => any) | undefined;
  4145. destroyed?: (() => any) | undefined;
  4146. unmounted?: (() => any) | undefined;
  4147. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4148. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4149. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  4150. delimiters?: [string, string] | undefined;
  4151. __differentiator?: string | number | symbol | undefined;
  4152. __isBuiltIn?: boolean | undefined;
  4153. __file?: string | undefined;
  4154. __name?: string | undefined;
  4155. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  4156. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4157. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4158. }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  4159. new (...args: any[]): any;
  4160. __isFragment?: never;
  4161. __isTeleport?: never;
  4162. __isSuspense?: never;
  4163. } | {
  4164. [x: string]: any;
  4165. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  4166. attrs: {
  4167. [x: string]: unknown;
  4168. };
  4169. slots: Readonly<{
  4170. [name: string]: _$vue.Slot<any> | undefined;
  4171. }>;
  4172. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  4173. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  4174. }) => any) | undefined;
  4175. name?: string | undefined;
  4176. template?: string | object | undefined;
  4177. render?: Function | undefined;
  4178. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  4179. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  4180. inheritAttrs?: boolean | undefined;
  4181. emits?: any;
  4182. slots?: {} | undefined;
  4183. expose?: string[] | undefined;
  4184. serverPrefetch?: (() => void | Promise<any>) | undefined;
  4185. compilerOptions?: {
  4186. isCustomElement?: ((tag: string) => boolean) | undefined;
  4187. whitespace?: "preserve" | "condense" | undefined;
  4188. comments?: boolean | undefined;
  4189. delimiters?: [string, string] | undefined;
  4190. } | undefined;
  4191. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  4192. __isFragment?: never | undefined;
  4193. __isTeleport?: never | undefined;
  4194. __isSuspense?: never | undefined;
  4195. __defaults?: {} | undefined;
  4196. compatConfig?: {
  4197. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  4198. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  4199. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  4200. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  4201. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  4202. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  4203. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  4204. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  4205. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  4206. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  4207. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  4208. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  4209. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  4210. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  4211. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  4212. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  4213. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  4214. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  4215. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  4216. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  4217. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  4218. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  4219. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  4220. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  4221. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  4222. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  4223. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  4224. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  4225. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  4226. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  4227. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  4228. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  4229. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  4230. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  4231. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  4232. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  4233. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  4234. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  4235. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  4236. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  4237. FILTERS?: boolean | "suppress-warning" | undefined;
  4238. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  4239. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  4240. } | undefined;
  4241. data?: ((this: any, vm: any) => any) | undefined;
  4242. computed?: _$vue.ComputedOptions | undefined;
  4243. methods?: _$vue.MethodOptions | undefined;
  4244. watch?: {
  4245. [x: string]: (string | _$vue.WatchCallback | ({
  4246. handler: _$vue.WatchCallback | string;
  4247. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  4248. handler: _$vue.WatchCallback | string;
  4249. } & _$vue.WatchOptions<boolean>))[];
  4250. } | undefined;
  4251. provide?: _$vue.ComponentProvideOptions | undefined;
  4252. inject?: {} | string[] | undefined;
  4253. filters?: Record<string, Function> | undefined;
  4254. mixins?: any[] | undefined;
  4255. extends?: any;
  4256. beforeCreate?: (() => any) | undefined;
  4257. created?: (() => any) | undefined;
  4258. beforeMount?: (() => any) | undefined;
  4259. mounted?: (() => any) | undefined;
  4260. beforeUpdate?: (() => any) | undefined;
  4261. updated?: (() => any) | undefined;
  4262. activated?: (() => any) | undefined;
  4263. deactivated?: (() => any) | undefined;
  4264. beforeDestroy?: (() => any) | undefined;
  4265. beforeUnmount?: (() => any) | undefined;
  4266. destroyed?: (() => any) | undefined;
  4267. unmounted?: (() => any) | undefined;
  4268. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4269. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4270. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  4271. delimiters?: [string, string] | undefined;
  4272. __differentiator?: string | number | symbol | undefined;
  4273. __isBuiltIn?: boolean | undefined;
  4274. __file?: string | undefined;
  4275. __name?: string | undefined;
  4276. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  4277. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4278. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4279. }>;
  4280. cancelButtonLoadingIcon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  4281. new (...args: any[]): any;
  4282. __isFragment?: never;
  4283. __isTeleport?: never;
  4284. __isSuspense?: never;
  4285. } | {
  4286. [x: string]: any;
  4287. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  4288. attrs: {
  4289. [x: string]: unknown;
  4290. };
  4291. slots: Readonly<{
  4292. [name: string]: _$vue.Slot<any> | undefined;
  4293. }>;
  4294. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  4295. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  4296. }) => any) | undefined;
  4297. name?: string | undefined;
  4298. template?: string | object | undefined;
  4299. render?: Function | undefined;
  4300. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  4301. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  4302. inheritAttrs?: boolean | undefined;
  4303. emits?: any;
  4304. slots?: {} | undefined;
  4305. expose?: string[] | undefined;
  4306. serverPrefetch?: (() => void | Promise<any>) | undefined;
  4307. compilerOptions?: {
  4308. isCustomElement?: ((tag: string) => boolean) | undefined;
  4309. whitespace?: "preserve" | "condense" | undefined;
  4310. comments?: boolean | undefined;
  4311. delimiters?: [string, string] | undefined;
  4312. } | undefined;
  4313. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  4314. __isFragment?: never | undefined;
  4315. __isTeleport?: never | undefined;
  4316. __isSuspense?: never | undefined;
  4317. __defaults?: {} | undefined;
  4318. compatConfig?: {
  4319. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  4320. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  4321. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  4322. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  4323. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  4324. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  4325. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  4326. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  4327. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  4328. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  4329. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  4330. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  4331. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  4332. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  4333. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  4334. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  4335. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  4336. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  4337. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  4338. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  4339. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  4340. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  4341. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  4342. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  4343. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  4344. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  4345. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  4346. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  4347. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  4348. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  4349. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  4350. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  4351. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  4352. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  4353. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  4354. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  4355. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  4356. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  4357. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  4358. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  4359. FILTERS?: boolean | "suppress-warning" | undefined;
  4360. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  4361. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  4362. } | undefined;
  4363. data?: ((this: any, vm: any) => any) | undefined;
  4364. computed?: _$vue.ComputedOptions | undefined;
  4365. methods?: _$vue.MethodOptions | undefined;
  4366. watch?: {
  4367. [x: string]: (string | _$vue.WatchCallback | ({
  4368. handler: _$vue.WatchCallback | string;
  4369. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  4370. handler: _$vue.WatchCallback | string;
  4371. } & _$vue.WatchOptions<boolean>))[];
  4372. } | undefined;
  4373. provide?: _$vue.ComponentProvideOptions | undefined;
  4374. inject?: {} | string[] | undefined;
  4375. filters?: Record<string, Function> | undefined;
  4376. mixins?: any[] | undefined;
  4377. extends?: any;
  4378. beforeCreate?: (() => any) | undefined;
  4379. created?: (() => any) | undefined;
  4380. beforeMount?: (() => any) | undefined;
  4381. mounted?: (() => any) | undefined;
  4382. beforeUpdate?: (() => any) | undefined;
  4383. updated?: (() => any) | undefined;
  4384. activated?: (() => any) | undefined;
  4385. deactivated?: (() => any) | undefined;
  4386. beforeDestroy?: (() => any) | undefined;
  4387. beforeUnmount?: (() => any) | undefined;
  4388. destroyed?: (() => any) | undefined;
  4389. unmounted?: (() => any) | undefined;
  4390. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4391. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4392. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  4393. delimiters?: [string, string] | undefined;
  4394. __differentiator?: string | number | symbol | undefined;
  4395. __isBuiltIn?: boolean | undefined;
  4396. __file?: string | undefined;
  4397. __name?: string | undefined;
  4398. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  4399. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4400. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4401. }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  4402. new (...args: any[]): any;
  4403. __isFragment?: never;
  4404. __isTeleport?: never;
  4405. __isSuspense?: never;
  4406. } | {
  4407. [x: string]: any;
  4408. setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
  4409. attrs: {
  4410. [x: string]: unknown;
  4411. };
  4412. slots: Readonly<{
  4413. [name: string]: _$vue.Slot<any> | undefined;
  4414. }>;
  4415. emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
  4416. expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
  4417. }) => any) | undefined;
  4418. name?: string | undefined;
  4419. template?: string | object | undefined;
  4420. render?: Function | undefined;
  4421. components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
  4422. directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
  4423. inheritAttrs?: boolean | undefined;
  4424. emits?: any;
  4425. slots?: {} | undefined;
  4426. expose?: string[] | undefined;
  4427. serverPrefetch?: (() => void | Promise<any>) | undefined;
  4428. compilerOptions?: {
  4429. isCustomElement?: ((tag: string) => boolean) | undefined;
  4430. whitespace?: "preserve" | "condense" | undefined;
  4431. comments?: boolean | undefined;
  4432. delimiters?: [string, string] | undefined;
  4433. } | undefined;
  4434. call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
  4435. __isFragment?: never | undefined;
  4436. __isTeleport?: never | undefined;
  4437. __isSuspense?: never | undefined;
  4438. __defaults?: {} | undefined;
  4439. compatConfig?: {
  4440. GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
  4441. GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
  4442. GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
  4443. GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
  4444. GLOBAL_SET?: boolean | "suppress-warning" | undefined;
  4445. GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
  4446. GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
  4447. GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
  4448. CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
  4449. CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
  4450. CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
  4451. CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
  4452. CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
  4453. CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
  4454. CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
  4455. INSTANCE_SET?: boolean | "suppress-warning" | undefined;
  4456. INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
  4457. INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
  4458. INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
  4459. INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
  4460. INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
  4461. INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
  4462. INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
  4463. INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
  4464. OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
  4465. OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
  4466. OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
  4467. OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
  4468. WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
  4469. PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
  4470. V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
  4471. CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
  4472. ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
  4473. ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
  4474. TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
  4475. TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
  4476. COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
  4477. COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
  4478. COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
  4479. RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
  4480. FILTERS?: boolean | "suppress-warning" | undefined;
  4481. PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
  4482. MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
  4483. } | undefined;
  4484. data?: ((this: any, vm: any) => any) | undefined;
  4485. computed?: _$vue.ComputedOptions | undefined;
  4486. methods?: _$vue.MethodOptions | undefined;
  4487. watch?: {
  4488. [x: string]: (string | _$vue.WatchCallback | ({
  4489. handler: _$vue.WatchCallback | string;
  4490. } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
  4491. handler: _$vue.WatchCallback | string;
  4492. } & _$vue.WatchOptions<boolean>))[];
  4493. } | undefined;
  4494. provide?: _$vue.ComponentProvideOptions | undefined;
  4495. inject?: {} | string[] | undefined;
  4496. filters?: Record<string, Function> | undefined;
  4497. mixins?: any[] | undefined;
  4498. extends?: any;
  4499. beforeCreate?: (() => any) | undefined;
  4500. created?: (() => any) | undefined;
  4501. beforeMount?: (() => any) | undefined;
  4502. mounted?: (() => any) | undefined;
  4503. beforeUpdate?: (() => any) | undefined;
  4504. updated?: (() => any) | undefined;
  4505. activated?: (() => any) | undefined;
  4506. deactivated?: (() => any) | undefined;
  4507. beforeDestroy?: (() => any) | undefined;
  4508. beforeUnmount?: (() => any) | undefined;
  4509. destroyed?: (() => any) | undefined;
  4510. unmounted?: (() => any) | undefined;
  4511. renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4512. renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
  4513. errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
  4514. delimiters?: [string, string] | undefined;
  4515. __differentiator?: string | number | symbol | undefined;
  4516. __isBuiltIn?: boolean | undefined;
  4517. __file?: string | undefined;
  4518. __name?: string | undefined;
  4519. beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
  4520. beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4521. beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
  4522. }>;
  4523. confirmButtonClass: _$vue.Ref<string, string>;
  4524. confirmButtonDisabled: _$vue.Ref<boolean, boolean>;
  4525. cancelButtonClass: _$vue.Ref<string, string>;
  4526. editorErrorMessage: _$vue.Ref<string, string>;
  4527. beforeClose: _$vue.Ref<((action: Action, instance: MessageBoxState, done: () => void) => void) | null, ((action: Action, instance: MessageBoxState, done: () => void) => void) | null>;
  4528. callback: _$vue.Ref<Callback | null, Callback | null>;
  4529. distinguishCancelAndClose: _$vue.Ref<boolean, boolean>;
  4530. modalFade: _$vue.Ref<boolean, boolean>;
  4531. modalClass: _$vue.Ref<string, string>;
  4532. validateError: _$vue.Ref<boolean, boolean>;
  4533. zIndex: _$vue.Ref<number, number>;
  4534. }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, ("action" | "vanish")[], "action" | "vanish", _$vue.PublicProps, Readonly<_$vue.ExtractPropTypes<{
  4535. buttonSize: {
  4536. type: PropType<ComponentSize>;
  4537. validator: (val: string) => val is ComponentSize | "";
  4538. };
  4539. modal: {
  4540. type: BooleanConstructor;
  4541. default: boolean;
  4542. };
  4543. lockScroll: {
  4544. type: BooleanConstructor;
  4545. default: boolean;
  4546. };
  4547. showClose: {
  4548. type: BooleanConstructor;
  4549. default: boolean;
  4550. };
  4551. closeOnClickModal: {
  4552. type: BooleanConstructor;
  4553. default: boolean;
  4554. };
  4555. closeOnPressEscape: {
  4556. type: BooleanConstructor;
  4557. default: boolean;
  4558. };
  4559. closeOnHashChange: {
  4560. type: BooleanConstructor;
  4561. default: boolean;
  4562. };
  4563. center: BooleanConstructor;
  4564. draggable: BooleanConstructor;
  4565. overflow: BooleanConstructor;
  4566. roundButton: BooleanConstructor;
  4567. container: {
  4568. type: StringConstructor;
  4569. default: string;
  4570. };
  4571. boxType: {
  4572. type: PropType<MessageBoxType>;
  4573. default: string;
  4574. };
  4575. }>> & Readonly<{
  4576. onAction?: ((...args: any[]) => any) | undefined;
  4577. onVanish?: ((...args: any[]) => any) | undefined;
  4578. }>, {
  4579. center: boolean;
  4580. container: string;
  4581. overflow: boolean;
  4582. closeOnClickModal: boolean;
  4583. closeOnPressEscape: boolean;
  4584. lockScroll: boolean;
  4585. modal: boolean;
  4586. draggable: boolean;
  4587. showClose: boolean;
  4588. roundButton: boolean;
  4589. closeOnHashChange: boolean;
  4590. boxType: MessageBoxType;
  4591. }, {}, {
  4592. Close: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4593. SuccessFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4594. InfoFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4595. WarningFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4596. CircleCloseFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4597. ElButton: {
  4598. new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{
  4599. onClick?: ((evt: MouseEvent) => any) | undefined;
  4600. }>, {
  4601. ref: _$vue.Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
  4602. size: _$vue.ComputedRef<"" | "default" | "small" | "large">;
  4603. type: _$vue.ComputedRef<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
  4604. disabled: _$vue.ComputedRef<boolean>;
  4605. shouldAddSpace: _$vue.ComputedRef<boolean>;
  4606. }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
  4607. click: (evt: MouseEvent) => void;
  4608. }, _$vue.PublicProps, {
  4609. text: boolean;
  4610. disabled: boolean;
  4611. type: ButtonType;
  4612. round: boolean;
  4613. dashed: boolean;
  4614. nativeType: ButtonNativeType;
  4615. loadingIcon: IconPropType;
  4616. plain: boolean;
  4617. autoInsertSpace: boolean;
  4618. tag: string | _$vue.Component;
  4619. }, false, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
  4620. P: {};
  4621. B: {};
  4622. D: {};
  4623. C: {};
  4624. M: {};
  4625. Defaults: {};
  4626. }, Readonly<ButtonProps> & Readonly<{
  4627. onClick?: ((evt: MouseEvent) => any) | undefined;
  4628. }>, {
  4629. ref: _$vue.Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
  4630. size: _$vue.ComputedRef<"" | "default" | "small" | "large">;
  4631. type: _$vue.ComputedRef<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
  4632. disabled: _$vue.ComputedRef<boolean>;
  4633. shouldAddSpace: _$vue.ComputedRef<boolean>;
  4634. }, {}, {}, {}, {
  4635. text: boolean;
  4636. disabled: boolean;
  4637. type: ButtonType;
  4638. round: boolean;
  4639. dashed: boolean;
  4640. nativeType: ButtonNativeType;
  4641. loadingIcon: IconPropType;
  4642. plain: boolean;
  4643. autoInsertSpace: boolean;
  4644. tag: string | _$vue.Component;
  4645. }>;
  4646. __isFragment?: never;
  4647. __isTeleport?: never;
  4648. __isSuspense?: never;
  4649. } & _$vue.ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{
  4650. onClick?: ((evt: MouseEvent) => any) | undefined;
  4651. }>, {
  4652. ref: _$vue.Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
  4653. size: _$vue.ComputedRef<"" | "default" | "small" | "large">;
  4654. type: _$vue.ComputedRef<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
  4655. disabled: _$vue.ComputedRef<boolean>;
  4656. shouldAddSpace: _$vue.ComputedRef<boolean>;
  4657. }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
  4658. click: (evt: MouseEvent) => void;
  4659. }, string, {
  4660. text: boolean;
  4661. disabled: boolean;
  4662. type: ButtonType;
  4663. round: boolean;
  4664. dashed: boolean;
  4665. nativeType: ButtonNativeType;
  4666. loadingIcon: IconPropType;
  4667. plain: boolean;
  4668. autoInsertSpace: boolean;
  4669. tag: string | _$vue.Component;
  4670. }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
  4671. $slots: {
  4672. loading?: (props: {}) => any;
  4673. } & {
  4674. icon?: (props: {}) => any;
  4675. } & {
  4676. default?: (props: {}) => any;
  4677. };
  4678. }) & _$vue.ObjectPlugin & {
  4679. setPropsDefaults: (defaults: {
  4680. readonly size?: "" | "default" | "small" | "large" | (() => "" | "default" | "small" | "large") | undefined;
  4681. readonly disabled?: boolean | (() => boolean) | undefined;
  4682. readonly type?: "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger" | (() => "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger") | undefined;
  4683. readonly icon?: string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  4684. new (...args: any[]): any;
  4685. __isFragment?: never;
  4686. __isTeleport?: never;
  4687. __isSuspense?: never;
  4688. } | (() => (IconPropType | undefined) & {}) | undefined;
  4689. readonly nativeType?: "button" | "reset" | "submit" | (() => "button" | "reset" | "submit") | undefined;
  4690. readonly loading?: boolean | (() => boolean) | undefined;
  4691. readonly loadingIcon?: string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  4692. new (...args: any[]): any;
  4693. __isFragment?: never;
  4694. __isTeleport?: never;
  4695. __isSuspense?: never;
  4696. } | (() => (IconPropType | undefined) & {}) | undefined;
  4697. readonly plain?: boolean | (() => boolean) | undefined;
  4698. readonly text?: boolean | (() => boolean) | undefined;
  4699. readonly link?: boolean | (() => boolean) | undefined;
  4700. readonly bg?: boolean | (() => boolean) | undefined;
  4701. readonly autofocus?: boolean | (() => boolean) | undefined;
  4702. readonly round?: boolean | (() => boolean) | undefined;
  4703. readonly circle?: boolean | (() => boolean) | undefined;
  4704. readonly dashed?: boolean | (() => boolean) | undefined;
  4705. readonly color?: string | (() => string) | undefined;
  4706. readonly dark?: boolean | (() => boolean) | undefined;
  4707. readonly autoInsertSpace?: boolean | (() => boolean) | undefined;
  4708. readonly tag?: string | _$vue.FunctionalComponent<any, {}, any, {}> | {
  4709. new (...args: any[]): any;
  4710. __isFragment?: never;
  4711. __isTeleport?: never;
  4712. __isSuspense?: never;
  4713. } | (() => (string | _$vue.Component | undefined) & {}) | undefined;
  4714. }) => void;
  4715. } & {
  4716. ButtonGroup: typeof _default$1;
  4717. };
  4718. ElFocusTrap: _$vue.DefineComponent<_$vue.ExtractPropTypes<{
  4719. loop: BooleanConstructor;
  4720. trapped: BooleanConstructor;
  4721. focusTrapEl: PropType<HTMLElement>;
  4722. focusStartEl: {
  4723. type: PropType<"container" | "first" | HTMLElement>;
  4724. default: string;
  4725. };
  4726. }>, {
  4727. onKeydown: (e: KeyboardEvent) => void;
  4728. }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, ("focusin" | "focusout" | "focusAfterTrapped" | "focusAfterReleased" | "focusout-prevented" | "release-requested")[], "focusin" | "focusout" | "focusAfterTrapped" | "focusAfterReleased" | "focusout-prevented" | "release-requested", _$vue.PublicProps, Readonly<_$vue.ExtractPropTypes<{
  4729. loop: BooleanConstructor;
  4730. trapped: BooleanConstructor;
  4731. focusTrapEl: PropType<HTMLElement>;
  4732. focusStartEl: {
  4733. type: PropType<"container" | "first" | HTMLElement>;
  4734. default: string;
  4735. };
  4736. }>> & Readonly<{
  4737. onFocusin?: ((...args: any[]) => any) | undefined;
  4738. onFocusout?: ((...args: any[]) => any) | undefined;
  4739. onFocusAfterTrapped?: ((...args: any[]) => any) | undefined;
  4740. onFocusAfterReleased?: ((...args: any[]) => any) | undefined;
  4741. "onFocusout-prevented"?: ((...args: any[]) => any) | undefined;
  4742. "onRelease-requested"?: ((...args: any[]) => any) | undefined;
  4743. }>, {
  4744. loop: boolean;
  4745. trapped: boolean;
  4746. focusStartEl: HTMLElement | "first" | "container";
  4747. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4748. ElInput: SFCWithInstall<{
  4749. new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<InputProps> & Readonly<{
  4750. "onUpdate:modelValue"?: ((value: string) => any) | undefined;
  4751. onInput?: ((value: string) => any) | undefined;
  4752. onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
  4753. onFocus?: ((evt: FocusEvent) => any) | undefined;
  4754. onBlur?: ((evt: FocusEvent) => any) | undefined;
  4755. onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
  4756. onMouseleave?: ((evt: MouseEvent) => any) | undefined;
  4757. onMouseenter?: ((evt: MouseEvent) => any) | undefined;
  4758. onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
  4759. onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
  4760. onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
  4761. onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
  4762. }>, {
  4763. input: _$vue.ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
  4764. textarea: _$vue.ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
  4765. ref: _$vue.ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
  4766. textareaStyle: _$vue.ComputedRef<_$vue.StyleValue>;
  4767. autosize: _$vue.Ref<InputAutoSize | undefined, InputAutoSize | undefined>;
  4768. isComposing: _$vue.Ref<boolean, boolean>;
  4769. passwordVisible: _$vue.Ref<boolean, boolean>;
  4770. focus: () => void | undefined;
  4771. blur: () => void | undefined;
  4772. select: () => void;
  4773. clear: (evt?: MouseEvent) => void;
  4774. resizeTextarea: () => void;
  4775. }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
  4776. "update:modelValue": (value: string) => void;
  4777. input: (value: string) => void;
  4778. change: (value: string, evt?: Event | undefined) => void;
  4779. focus: (evt: FocusEvent) => void;
  4780. blur: (evt: FocusEvent) => void;
  4781. clear: (evt: MouseEvent | undefined) => void;
  4782. mouseleave: (evt: MouseEvent) => void;
  4783. mouseenter: (evt: MouseEvent) => void;
  4784. keydown: (evt: Event | KeyboardEvent) => void;
  4785. compositionstart: (evt: CompositionEvent) => void;
  4786. compositionupdate: (evt: CompositionEvent) => void;
  4787. compositionend: (evt: CompositionEvent) => void;
  4788. }, _$vue.PublicProps, {
  4789. disabled: boolean;
  4790. modelValue: string | number | null;
  4791. modelModifiers: InputModelModifiers;
  4792. type: InputType;
  4793. autocomplete: string;
  4794. clearIcon: IconPropType;
  4795. wordLimitPosition: "inside" | "outside";
  4796. tabindex: string | number;
  4797. validateEvent: boolean;
  4798. inputStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
  4799. rows: number;
  4800. }, false, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
  4801. P: {};
  4802. B: {};
  4803. D: {};
  4804. C: {};
  4805. M: {};
  4806. Defaults: {};
  4807. }, Readonly<InputProps> & Readonly<{
  4808. "onUpdate:modelValue"?: ((value: string) => any) | undefined;
  4809. onInput?: ((value: string) => any) | undefined;
  4810. onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
  4811. onFocus?: ((evt: FocusEvent) => any) | undefined;
  4812. onBlur?: ((evt: FocusEvent) => any) | undefined;
  4813. onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
  4814. onMouseleave?: ((evt: MouseEvent) => any) | undefined;
  4815. onMouseenter?: ((evt: MouseEvent) => any) | undefined;
  4816. onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
  4817. onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
  4818. onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
  4819. onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
  4820. }>, {
  4821. input: _$vue.ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
  4822. textarea: _$vue.ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
  4823. ref: _$vue.ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
  4824. textareaStyle: _$vue.ComputedRef<_$vue.StyleValue>;
  4825. autosize: _$vue.Ref<InputAutoSize | undefined, InputAutoSize | undefined>;
  4826. isComposing: _$vue.Ref<boolean, boolean>;
  4827. passwordVisible: _$vue.Ref<boolean, boolean>;
  4828. focus: () => void | undefined;
  4829. blur: () => void | undefined;
  4830. select: () => void;
  4831. clear: (evt?: MouseEvent) => void;
  4832. resizeTextarea: () => void;
  4833. }, {}, {}, {}, {
  4834. disabled: boolean;
  4835. modelValue: string | number | null;
  4836. modelModifiers: InputModelModifiers;
  4837. type: InputType;
  4838. autocomplete: string;
  4839. clearIcon: IconPropType;
  4840. wordLimitPosition: "inside" | "outside";
  4841. tabindex: string | number;
  4842. validateEvent: boolean;
  4843. inputStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
  4844. rows: number;
  4845. }>;
  4846. __isFragment?: never;
  4847. __isTeleport?: never;
  4848. __isSuspense?: never;
  4849. } & _$vue.ComponentOptionsBase<Readonly<InputProps> & Readonly<{
  4850. "onUpdate:modelValue"?: ((value: string) => any) | undefined;
  4851. onInput?: ((value: string) => any) | undefined;
  4852. onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
  4853. onFocus?: ((evt: FocusEvent) => any) | undefined;
  4854. onBlur?: ((evt: FocusEvent) => any) | undefined;
  4855. onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
  4856. onMouseleave?: ((evt: MouseEvent) => any) | undefined;
  4857. onMouseenter?: ((evt: MouseEvent) => any) | undefined;
  4858. onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
  4859. onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
  4860. onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
  4861. onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
  4862. }>, {
  4863. input: _$vue.ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
  4864. textarea: _$vue.ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
  4865. ref: _$vue.ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
  4866. textareaStyle: _$vue.ComputedRef<_$vue.StyleValue>;
  4867. autosize: _$vue.Ref<InputAutoSize | undefined, InputAutoSize | undefined>;
  4868. isComposing: _$vue.Ref<boolean, boolean>;
  4869. passwordVisible: _$vue.Ref<boolean, boolean>;
  4870. focus: () => void | undefined;
  4871. blur: () => void | undefined;
  4872. select: () => void;
  4873. clear: (evt?: MouseEvent) => void;
  4874. resizeTextarea: () => void;
  4875. }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
  4876. "update:modelValue": (value: string) => void;
  4877. input: (value: string) => void;
  4878. change: (value: string, evt?: Event | undefined) => void;
  4879. focus: (evt: FocusEvent) => void;
  4880. blur: (evt: FocusEvent) => void;
  4881. clear: (evt: MouseEvent | undefined) => void;
  4882. mouseleave: (evt: MouseEvent) => void;
  4883. mouseenter: (evt: MouseEvent) => void;
  4884. keydown: (evt: Event | KeyboardEvent) => void;
  4885. compositionstart: (evt: CompositionEvent) => void;
  4886. compositionupdate: (evt: CompositionEvent) => void;
  4887. compositionend: (evt: CompositionEvent) => void;
  4888. }, string, {
  4889. disabled: boolean;
  4890. modelValue: string | number | null;
  4891. modelModifiers: InputModelModifiers;
  4892. type: InputType;
  4893. autocomplete: string;
  4894. clearIcon: IconPropType;
  4895. wordLimitPosition: "inside" | "outside";
  4896. tabindex: string | number;
  4897. validateEvent: boolean;
  4898. inputStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
  4899. rows: number;
  4900. }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
  4901. $slots: {
  4902. prepend?: (props: {}) => any;
  4903. } & {
  4904. prefix?: (props: {}) => any;
  4905. } & {
  4906. suffix?: (props: {}) => any;
  4907. } & {
  4908. 'password-icon'?: (props: {
  4909. visible: boolean;
  4910. }) => any;
  4911. } & {
  4912. append?: (props: {}) => any;
  4913. };
  4914. })>;
  4915. ElOverlay: _$vue.DefineComponent<_$vue.ExtractPropTypes<{
  4916. readonly mask: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  4917. readonly customMaskEvent: BooleanConstructor;
  4918. readonly overlayClass: {
  4919. readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | string[] | Record<string, boolean>) | (() => string | string[] | Record<string, boolean>) | (((new (...args: any[]) => string | string[] | Record<string, boolean>) | (() => string | string[] | Record<string, boolean>)) | null)[], unknown, unknown>>;
  4920. readonly required: false;
  4921. readonly validator: ((val: unknown) => boolean) | undefined;
  4922. __epPropKey: true;
  4923. };
  4924. readonly zIndex: {
  4925. readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | number) | (() => _$csstype.Property.ZIndex | undefined) | (((new (...args: any[]) => string | number) | (() => _$csstype.Property.ZIndex | undefined)) | null)[], unknown, unknown>>;
  4926. readonly required: false;
  4927. readonly validator: ((val: unknown) => boolean) | undefined;
  4928. __epPropKey: true;
  4929. };
  4930. }>, () => _$vue.VNode<_$vue.RendererNode, _$vue.RendererElement, {
  4931. [key: string]: any;
  4932. }>, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
  4933. click: (evt: MouseEvent) => boolean;
  4934. }, string, _$vue.PublicProps, Readonly<_$vue.ExtractPropTypes<{
  4935. readonly mask: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
  4936. readonly customMaskEvent: BooleanConstructor;
  4937. readonly overlayClass: {
  4938. readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | string[] | Record<string, boolean>) | (() => string | string[] | Record<string, boolean>) | (((new (...args: any[]) => string | string[] | Record<string, boolean>) | (() => string | string[] | Record<string, boolean>)) | null)[], unknown, unknown>>;
  4939. readonly required: false;
  4940. readonly validator: ((val: unknown) => boolean) | undefined;
  4941. __epPropKey: true;
  4942. };
  4943. readonly zIndex: {
  4944. readonly type: PropType<EpPropMergeType<(new (...args: any[]) => string | number) | (() => _$csstype.Property.ZIndex | undefined) | (((new (...args: any[]) => string | number) | (() => _$csstype.Property.ZIndex | undefined)) | null)[], unknown, unknown>>;
  4945. readonly required: false;
  4946. readonly validator: ((val: unknown) => boolean) | undefined;
  4947. __epPropKey: true;
  4948. };
  4949. }>> & Readonly<{
  4950. onClick?: ((evt: MouseEvent) => any) | undefined;
  4951. }>, {
  4952. readonly mask: EpPropMergeType<BooleanConstructor, unknown, unknown>;
  4953. readonly customMaskEvent: boolean;
  4954. }, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4955. ElIcon: SFCWithInstall<{
  4956. new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<IconProps> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {}, false, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
  4957. P: {};
  4958. B: {};
  4959. D: {};
  4960. C: {};
  4961. M: {};
  4962. Defaults: {};
  4963. }, Readonly<IconProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
  4964. __isFragment?: never;
  4965. __isTeleport?: never;
  4966. __isSuspense?: never;
  4967. } & _$vue.ComponentOptionsBase<Readonly<IconProps> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, {}, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
  4968. $slots: {
  4969. default?: (props: {}) => any;
  4970. };
  4971. })>;
  4972. }, {
  4973. TrapFocus: _$vue.ObjectDirective<any, any, string, any>;
  4974. }, string, _$vue.ComponentProvideOptions, true, {}, any>;
  4975. //#endregion
  4976. export { _default as default };