| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977 |
- import { IconPropType } from "../../../utils/vue/icon.js";
- import { SFCWithInstall } from "../../../utils/vue/typescript.js";
- import { EpPropFinalized, EpPropMergeType } from "../../../utils/vue/props/types.js";
- import { ComponentSize } from "../../../constants/size.js";
- import { Translator } from "../../../hooks/use-locale/index.js";
- import { InputAutoSize, InputModelModifiers, InputProps, InputType } from "../../input/src/input.js";
- import { InputInstance } from "../../input/src/instance.js";
- import { ButtonNativeType, ButtonProps, ButtonType } from "../../button/src/button.js";
- import _default$1 from "../../button/src/button-group.vue.js";
- import { IconProps } from "../../icon/src/icon.js";
- import { Action, Callback, MessageBoxInputValidator, MessageBoxState, MessageBoxType } from "./message-box.type.js";
- import * as _$vue from "vue";
- import { ComponentPublicInstance, PropType } from "vue";
- import * as _$csstype from "csstype";
- import * as _$_vue_shared0 from "@vue/shared";
- import * as _$vue_router0 from "vue-router";
- //#region ../../packages/components/message-box/src/index.vue.d.ts
- declare const _default: typeof __VLS_export;
- declare const __VLS_export: _$vue.DefineComponent<_$vue.ExtractPropTypes<{
- buttonSize: {
- type: PropType<ComponentSize>;
- validator: (val: string) => val is ComponentSize | "";
- };
- modal: {
- type: BooleanConstructor;
- default: boolean;
- };
- lockScroll: {
- type: BooleanConstructor;
- default: boolean;
- };
- showClose: {
- type: BooleanConstructor;
- default: boolean;
- };
- closeOnClickModal: {
- type: BooleanConstructor;
- default: boolean;
- };
- closeOnPressEscape: {
- type: BooleanConstructor;
- default: boolean;
- };
- closeOnHashChange: {
- type: BooleanConstructor;
- default: boolean;
- };
- center: BooleanConstructor;
- draggable: BooleanConstructor;
- overflow: BooleanConstructor;
- roundButton: BooleanConstructor;
- container: {
- type: StringConstructor;
- default: string;
- };
- boxType: {
- type: PropType<MessageBoxType>;
- default: string;
- };
- }>, {
- ns: {
- namespace: _$vue.ComputedRef<string>;
- b: (blockSuffix?: string) => string;
- e: (element?: string) => string;
- m: (modifier?: string) => string;
- be: (blockSuffix?: string, element?: string) => string;
- em: (element?: string, modifier?: string) => string;
- bm: (blockSuffix?: string, modifier?: string) => string;
- bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
- is: {
- (name: string, state: boolean | undefined): string;
- (name: string): string;
- };
- cssVar: (object: Record<string, string>) => Record<string, string>;
- cssVarName: (name: string) => string;
- cssVarBlock: (object: Record<string, string>) => Record<string, string>;
- cssVarBlockName: (name: string) => string;
- };
- overlayEvent: {
- onClick: (e: MouseEvent) => void;
- onMousedown: (e: MouseEvent) => void;
- onMouseup: (e: MouseEvent) => void;
- };
- visible: _$vue.Ref<boolean, boolean>;
- hasMessage: _$vue.ComputedRef<boolean>;
- typeClass: _$vue.ComputedRef<{
- [x: string]: "" | _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- }>;
- contentId: _$vue.Ref<string, string>;
- inputId: _$vue.Ref<string, string>;
- btnSize: _$vue.ComputedRef<"" | "default" | "small" | "large">;
- iconComponent: _$vue.ComputedRef<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }>;
- confirmButtonClasses: _$vue.ComputedRef<string>;
- rootRef: _$vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
- focusStartRef: _$vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
- headerRef: _$vue.Ref<HTMLElement | undefined, HTMLElement | undefined>;
- inputRef: _$vue.Ref<InputInstance | undefined, InputInstance | undefined>;
- isDragging: _$vue.Ref<boolean, boolean>;
- confirmRef: _$vue.Ref<ComponentPublicInstance | undefined, ComponentPublicInstance | undefined>;
- doClose: () => void;
- handleClose: () => void;
- onCloseRequested: () => void;
- handleWrapperClick: () => void;
- handleInputEnter: (e: KeyboardEvent | Event) => void;
- handleAction: (action: Action) => void;
- t: Translator;
- autofocus: _$vue.Ref<boolean, boolean>;
- title: _$vue.Ref<string | undefined, string | undefined>;
- message: _$vue.Ref<string, string>;
- type: _$vue.Ref<"" | "info" | "primary" | "success" | "warning" | "error", "" | "info" | "primary" | "success" | "warning" | "error">;
- icon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }>;
- closeIcon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }>;
- customClass: _$vue.Ref<string, string>;
- customStyle: _$vue.Ref<{
- [x: `--${string}`]: string | number | undefined;
- accentColor?: _$csstype.Property.AccentColor | undefined;
- alignContent?: _$csstype.Property.AlignContent | undefined;
- alignItems?: _$csstype.Property.AlignItems | undefined;
- alignSelf?: _$csstype.Property.AlignSelf | undefined;
- alignTracks?: _$csstype.Property.AlignTracks | undefined;
- alignmentBaseline?: _$csstype.Property.AlignmentBaseline | undefined;
- anchorName?: _$csstype.Property.AnchorName | undefined;
- anchorScope?: _$csstype.Property.AnchorScope | undefined;
- animationComposition?: _$csstype.Property.AnimationComposition | undefined;
- animationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- animationDirection?: _$csstype.Property.AnimationDirection | undefined;
- animationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- animationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- animationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- animationName?: _$csstype.Property.AnimationName | undefined;
- animationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- animationRangeEnd?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
- animationRangeStart?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
- animationTimeline?: _$csstype.Property.AnimationTimeline | undefined;
- animationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- appearance?: _$csstype.Property.Appearance | undefined;
- aspectRatio?: _$csstype.Property.AspectRatio | undefined;
- backdropFilter?: _$csstype.Property.BackdropFilter | undefined;
- backfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
- backgroundAttachment?: _$csstype.Property.BackgroundAttachment | undefined;
- backgroundBlendMode?: _$csstype.Property.BackgroundBlendMode | undefined;
- backgroundClip?: _$csstype.Property.BackgroundClip | undefined;
- backgroundColor?: _$csstype.Property.BackgroundColor | undefined;
- backgroundImage?: _$csstype.Property.BackgroundImage | undefined;
- backgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
- backgroundPositionX?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
- backgroundPositionY?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
- backgroundRepeat?: _$csstype.Property.BackgroundRepeat | undefined;
- backgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- baselineShift?: _$csstype.Property.BaselineShift<string | number> | undefined;
- blockSize?: _$csstype.Property.BlockSize<string | number> | undefined;
- borderBlockEndColor?: _$csstype.Property.BorderBlockEndColor | undefined;
- borderBlockEndStyle?: _$csstype.Property.BorderBlockEndStyle | undefined;
- borderBlockEndWidth?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
- borderBlockStartColor?: _$csstype.Property.BorderBlockStartColor | undefined;
- borderBlockStartStyle?: _$csstype.Property.BorderBlockStartStyle | undefined;
- borderBlockStartWidth?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
- borderBottomColor?: _$csstype.Property.BorderBottomColor | undefined;
- borderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- borderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- borderBottomStyle?: _$csstype.Property.BorderBottomStyle | undefined;
- borderBottomWidth?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
- borderCollapse?: _$csstype.Property.BorderCollapse | undefined;
- borderEndEndRadius?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
- borderEndStartRadius?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
- borderImageOutset?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
- borderImageRepeat?: _$csstype.Property.BorderImageRepeat | undefined;
- borderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
- borderImageSource?: _$csstype.Property.BorderImageSource | undefined;
- borderImageWidth?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
- borderInlineEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
- borderInlineEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
- borderInlineEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- borderInlineStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
- borderInlineStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
- borderInlineStartWidth?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
- borderLeftColor?: _$csstype.Property.BorderLeftColor | undefined;
- borderLeftStyle?: _$csstype.Property.BorderLeftStyle | undefined;
- borderLeftWidth?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
- borderRightColor?: _$csstype.Property.BorderRightColor | undefined;
- borderRightStyle?: _$csstype.Property.BorderRightStyle | undefined;
- borderRightWidth?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
- borderSpacing?: _$csstype.Property.BorderSpacing<string | number> | undefined;
- borderStartEndRadius?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
- borderStartStartRadius?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
- borderTopColor?: _$csstype.Property.BorderTopColor | undefined;
- borderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- borderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- borderTopStyle?: _$csstype.Property.BorderTopStyle | undefined;
- borderTopWidth?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
- bottom?: _$csstype.Property.Bottom<string | number> | undefined;
- boxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
- boxShadow?: _$csstype.Property.BoxShadow | undefined;
- boxSizing?: _$csstype.Property.BoxSizing | undefined;
- breakAfter?: _$csstype.Property.BreakAfter | undefined;
- breakBefore?: _$csstype.Property.BreakBefore | undefined;
- breakInside?: _$csstype.Property.BreakInside | undefined;
- captionSide?: _$csstype.Property.CaptionSide | undefined;
- caretColor?: _$csstype.Property.CaretColor | undefined;
- caretShape?: _$csstype.Property.CaretShape | undefined;
- clear?: _$csstype.Property.Clear | undefined;
- clipPath?: _$csstype.Property.ClipPath | undefined;
- clipRule?: _$csstype.Property.ClipRule | undefined;
- color?: _$csstype.Property.Color | undefined;
- colorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
- colorInterpolationFilters?: _$csstype.Property.ColorInterpolationFilters | undefined;
- colorScheme?: _$csstype.Property.ColorScheme | undefined;
- columnCount?: _$csstype.Property.ColumnCount | undefined;
- columnFill?: _$csstype.Property.ColumnFill | undefined;
- columnGap?: _$csstype.Property.ColumnGap<string | number> | undefined;
- columnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
- columnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
- columnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- columnSpan?: _$csstype.Property.ColumnSpan | undefined;
- columnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- contain?: _$csstype.Property.Contain | undefined;
- containIntrinsicBlockSize?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
- containIntrinsicHeight?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
- containIntrinsicInlineSize?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
- containIntrinsicWidth?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
- containerName?: _$csstype.Property.ContainerName | undefined;
- containerType?: _$csstype.Property.ContainerType | undefined;
- content?: _$csstype.Property.Content | undefined;
- contentVisibility?: _$csstype.Property.ContentVisibility | undefined;
- counterIncrement?: _$csstype.Property.CounterIncrement | undefined;
- counterReset?: _$csstype.Property.CounterReset | undefined;
- counterSet?: _$csstype.Property.CounterSet | undefined;
- cursor?: _$csstype.Property.Cursor | undefined;
- cx?: _$csstype.Property.Cx<string | number> | undefined;
- cy?: _$csstype.Property.Cy<string | number> | undefined;
- d?: _$csstype.Property.D | undefined;
- direction?: _$csstype.Property.Direction | undefined;
- display?: _$csstype.Property.Display | undefined;
- dominantBaseline?: _$csstype.Property.DominantBaseline | undefined;
- emptyCells?: _$csstype.Property.EmptyCells | undefined;
- fieldSizing?: _$csstype.Property.FieldSizing | undefined;
- fill?: _$csstype.Property.Fill | undefined;
- fillOpacity?: _$csstype.Property.FillOpacity | undefined;
- fillRule?: _$csstype.Property.FillRule | undefined;
- filter?: _$csstype.Property.Filter | undefined;
- flexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
- flexDirection?: _$csstype.Property.FlexDirection | undefined;
- flexGrow?: _$csstype.Property.FlexGrow | undefined;
- flexShrink?: _$csstype.Property.FlexShrink | undefined;
- flexWrap?: _$csstype.Property.FlexWrap | undefined;
- float?: _$csstype.Property.Float | undefined;
- floodColor?: _$csstype.Property.FloodColor | undefined;
- floodOpacity?: _$csstype.Property.FloodOpacity | undefined;
- fontFamily?: _$csstype.Property.FontFamily | undefined;
- fontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
- fontKerning?: _$csstype.Property.FontKerning | undefined;
- fontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
- fontOpticalSizing?: _$csstype.Property.FontOpticalSizing | undefined;
- fontPalette?: _$csstype.Property.FontPalette | undefined;
- fontSize?: _$csstype.Property.FontSize<string | number> | undefined;
- fontSizeAdjust?: _$csstype.Property.FontSizeAdjust | undefined;
- fontSmooth?: _$csstype.Property.FontSmooth<string | number> | undefined;
- fontStyle?: _$csstype.Property.FontStyle | undefined;
- fontSynthesis?: _$csstype.Property.FontSynthesis | undefined;
- fontSynthesisPosition?: _$csstype.Property.FontSynthesisPosition | undefined;
- fontSynthesisSmallCaps?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
- fontSynthesisStyle?: _$csstype.Property.FontSynthesisStyle | undefined;
- fontSynthesisWeight?: _$csstype.Property.FontSynthesisWeight | undefined;
- fontVariant?: _$csstype.Property.FontVariant | undefined;
- fontVariantAlternates?: _$csstype.Property.FontVariantAlternates | undefined;
- fontVariantCaps?: _$csstype.Property.FontVariantCaps | undefined;
- fontVariantEastAsian?: _$csstype.Property.FontVariantEastAsian | undefined;
- fontVariantEmoji?: _$csstype.Property.FontVariantEmoji | undefined;
- fontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
- fontVariantNumeric?: _$csstype.Property.FontVariantNumeric | undefined;
- fontVariantPosition?: _$csstype.Property.FontVariantPosition | undefined;
- fontVariationSettings?: _$csstype.Property.FontVariationSettings | undefined;
- fontWeight?: _$csstype.Property.FontWeight | undefined;
- fontWidth?: _$csstype.Property.FontWidth | undefined;
- forcedColorAdjust?: _$csstype.Property.ForcedColorAdjust | undefined;
- gridAutoColumns?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
- gridAutoFlow?: _$csstype.Property.GridAutoFlow | undefined;
- gridAutoRows?: _$csstype.Property.GridAutoRows<string | number> | undefined;
- gridColumnEnd?: _$csstype.Property.GridColumnEnd | undefined;
- gridColumnStart?: _$csstype.Property.GridColumnStart | undefined;
- gridRowEnd?: _$csstype.Property.GridRowEnd | undefined;
- gridRowStart?: _$csstype.Property.GridRowStart | undefined;
- gridTemplateAreas?: _$csstype.Property.GridTemplateAreas | undefined;
- gridTemplateColumns?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
- gridTemplateRows?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
- hangingPunctuation?: _$csstype.Property.HangingPunctuation | undefined;
- height?: _$csstype.Property.Height<string | number> | undefined;
- hyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
- hyphenateLimitChars?: _$csstype.Property.HyphenateLimitChars | undefined;
- hyphens?: _$csstype.Property.Hyphens | undefined;
- imageOrientation?: _$csstype.Property.ImageOrientation | undefined;
- imageRendering?: _$csstype.Property.ImageRendering | undefined;
- imageResolution?: _$csstype.Property.ImageResolution | undefined;
- initialLetter?: _$csstype.Property.InitialLetter | undefined;
- initialLetterAlign?: _$csstype.Property.InitialLetterAlign | undefined;
- inlineSize?: _$csstype.Property.InlineSize<string | number> | undefined;
- insetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- insetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- insetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- insetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- interpolateSize?: _$csstype.Property.InterpolateSize | undefined;
- isolation?: _$csstype.Property.Isolation | undefined;
- justifyContent?: _$csstype.Property.JustifyContent | undefined;
- justifyItems?: _$csstype.Property.JustifyItems | undefined;
- justifySelf?: _$csstype.Property.JustifySelf | undefined;
- justifyTracks?: _$csstype.Property.JustifyTracks | undefined;
- left?: _$csstype.Property.Left<string | number> | undefined;
- letterSpacing?: _$csstype.Property.LetterSpacing<string | number> | undefined;
- lightingColor?: _$csstype.Property.LightingColor | undefined;
- lineBreak?: _$csstype.Property.LineBreak | undefined;
- lineHeight?: _$csstype.Property.LineHeight<string | number> | undefined;
- lineHeightStep?: _$csstype.Property.LineHeightStep<string | number> | undefined;
- listStyleImage?: _$csstype.Property.ListStyleImage | undefined;
- listStylePosition?: _$csstype.Property.ListStylePosition | undefined;
- listStyleType?: _$csstype.Property.ListStyleType | undefined;
- marginBlockEnd?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
- marginBlockStart?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
- marginBottom?: _$csstype.Property.MarginBottom<string | number> | undefined;
- marginInlineEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- marginInlineStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- marginLeft?: _$csstype.Property.MarginLeft<string | number> | undefined;
- marginRight?: _$csstype.Property.MarginRight<string | number> | undefined;
- marginTop?: _$csstype.Property.MarginTop<string | number> | undefined;
- marginTrim?: _$csstype.Property.MarginTrim | undefined;
- marker?: _$csstype.Property.Marker | undefined;
- markerEnd?: _$csstype.Property.MarkerEnd | undefined;
- markerMid?: _$csstype.Property.MarkerMid | undefined;
- markerStart?: _$csstype.Property.MarkerStart | undefined;
- maskBorderMode?: _$csstype.Property.MaskBorderMode | undefined;
- maskBorderOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- maskBorderRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
- maskBorderSlice?: _$csstype.Property.MaskBorderSlice | undefined;
- maskBorderSource?: _$csstype.Property.MaskBorderSource | undefined;
- maskBorderWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- maskClip?: _$csstype.Property.MaskClip | undefined;
- maskComposite?: _$csstype.Property.MaskComposite | undefined;
- maskImage?: _$csstype.Property.MaskImage | undefined;
- maskMode?: _$csstype.Property.MaskMode | undefined;
- maskOrigin?: _$csstype.Property.MaskOrigin | undefined;
- maskPosition?: _$csstype.Property.MaskPosition<string | number> | undefined;
- maskRepeat?: _$csstype.Property.MaskRepeat | undefined;
- maskSize?: _$csstype.Property.MaskSize<string | number> | undefined;
- maskType?: _$csstype.Property.MaskType | undefined;
- masonryAutoFlow?: _$csstype.Property.MasonryAutoFlow | undefined;
- mathDepth?: _$csstype.Property.MathDepth | undefined;
- mathShift?: _$csstype.Property.MathShift | undefined;
- mathStyle?: _$csstype.Property.MathStyle | undefined;
- maxBlockSize?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
- maxHeight?: _$csstype.Property.MaxHeight<string | number> | undefined;
- maxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- maxLines?: _$csstype.Property.MaxLines | undefined;
- maxWidth?: _$csstype.Property.MaxWidth<string | number> | undefined;
- minBlockSize?: _$csstype.Property.MinBlockSize<string | number> | undefined;
- minHeight?: _$csstype.Property.MinHeight<string | number> | undefined;
- minInlineSize?: _$csstype.Property.MinInlineSize<string | number> | undefined;
- minWidth?: _$csstype.Property.MinWidth<string | number> | undefined;
- mixBlendMode?: _$csstype.Property.MixBlendMode | undefined;
- motionDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- motionPath?: _$csstype.Property.OffsetPath | undefined;
- motionRotation?: _$csstype.Property.OffsetRotate | undefined;
- objectFit?: _$csstype.Property.ObjectFit | undefined;
- objectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- objectViewBox?: _$csstype.Property.ObjectViewBox | undefined;
- offsetAnchor?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
- offsetDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- offsetPath?: _$csstype.Property.OffsetPath | undefined;
- offsetPosition?: _$csstype.Property.OffsetPosition<string | number> | undefined;
- offsetRotate?: _$csstype.Property.OffsetRotate | undefined;
- offsetRotation?: _$csstype.Property.OffsetRotate | undefined;
- opacity?: _$csstype.Property.Opacity | undefined;
- order?: _$csstype.Property.Order | undefined;
- orphans?: _$csstype.Property.Orphans | undefined;
- outlineColor?: _$csstype.Property.OutlineColor | undefined;
- outlineOffset?: _$csstype.Property.OutlineOffset<string | number> | undefined;
- outlineStyle?: _$csstype.Property.OutlineStyle | undefined;
- outlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- overflowAnchor?: _$csstype.Property.OverflowAnchor | undefined;
- overflowBlock?: _$csstype.Property.OverflowBlock | undefined;
- overflowClipBox?: _$csstype.Property.OverflowClipBox | undefined;
- overflowClipMargin?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
- overflowInline?: _$csstype.Property.OverflowInline | undefined;
- overflowWrap?: _$csstype.Property.OverflowWrap | undefined;
- overflowX?: _$csstype.Property.OverflowX | undefined;
- overflowY?: _$csstype.Property.OverflowY | undefined;
- overlay?: _$csstype.Property.Overlay | undefined;
- overscrollBehaviorBlock?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
- overscrollBehaviorInline?: _$csstype.Property.OverscrollBehaviorInline | undefined;
- overscrollBehaviorX?: _$csstype.Property.OverscrollBehaviorX | undefined;
- overscrollBehaviorY?: _$csstype.Property.OverscrollBehaviorY | undefined;
- paddingBlockEnd?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
- paddingBlockStart?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
- paddingBottom?: _$csstype.Property.PaddingBottom<string | number> | undefined;
- paddingInlineEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- paddingInlineStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- paddingLeft?: _$csstype.Property.PaddingLeft<string | number> | undefined;
- paddingRight?: _$csstype.Property.PaddingRight<string | number> | undefined;
- paddingTop?: _$csstype.Property.PaddingTop<string | number> | undefined;
- page?: _$csstype.Property.Page | undefined;
- paintOrder?: _$csstype.Property.PaintOrder | undefined;
- perspective?: _$csstype.Property.Perspective<string | number> | undefined;
- perspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- pointerEvents?: _$csstype.Property.PointerEvents | undefined;
- position?: _$csstype.Property.Position | undefined;
- positionAnchor?: _$csstype.Property.PositionAnchor | undefined;
- positionArea?: _$csstype.Property.PositionArea | undefined;
- positionTryFallbacks?: _$csstype.Property.PositionTryFallbacks | undefined;
- positionTryOrder?: _$csstype.Property.PositionTryOrder | undefined;
- positionVisibility?: _$csstype.Property.PositionVisibility | undefined;
- printColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
- quotes?: _$csstype.Property.Quotes | undefined;
- r?: _$csstype.Property.R<string | number> | undefined;
- resize?: _$csstype.Property.Resize | undefined;
- right?: _$csstype.Property.Right<string | number> | undefined;
- rotate?: _$csstype.Property.Rotate | undefined;
- rowGap?: _$csstype.Property.RowGap<string | number> | undefined;
- rubyAlign?: _$csstype.Property.RubyAlign | undefined;
- rubyMerge?: _$csstype.Property.RubyMerge | undefined;
- rubyOverhang?: _$csstype.Property.RubyOverhang | undefined;
- rubyPosition?: _$csstype.Property.RubyPosition | undefined;
- rx?: _$csstype.Property.Rx<string | number> | undefined;
- ry?: _$csstype.Property.Ry<string | number> | undefined;
- scale?: _$csstype.Property.Scale | undefined;
- scrollBehavior?: _$csstype.Property.ScrollBehavior | undefined;
- scrollInitialTarget?: _$csstype.Property.ScrollInitialTarget | undefined;
- scrollMarginBlockEnd?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
- scrollMarginBlockStart?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
- scrollMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- scrollMarginInlineEnd?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
- scrollMarginInlineStart?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
- scrollMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- scrollMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- scrollMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- scrollPaddingBlockEnd?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
- scrollPaddingBlockStart?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
- scrollPaddingBottom?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
- scrollPaddingInlineEnd?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
- scrollPaddingInlineStart?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
- scrollPaddingLeft?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
- scrollPaddingRight?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
- scrollPaddingTop?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
- scrollSnapAlign?: _$csstype.Property.ScrollSnapAlign | undefined;
- scrollSnapMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- scrollSnapMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- scrollSnapMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- scrollSnapMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- scrollSnapStop?: _$csstype.Property.ScrollSnapStop | undefined;
- scrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
- scrollTimelineAxis?: _$csstype.Property.ScrollTimelineAxis | undefined;
- scrollTimelineName?: _$csstype.Property.ScrollTimelineName | undefined;
- scrollbarColor?: _$csstype.Property.ScrollbarColor | undefined;
- scrollbarGutter?: _$csstype.Property.ScrollbarGutter | undefined;
- scrollbarWidth?: _$csstype.Property.ScrollbarWidth | undefined;
- shapeImageThreshold?: _$csstype.Property.ShapeImageThreshold | undefined;
- shapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- shapeOutside?: _$csstype.Property.ShapeOutside | undefined;
- shapeRendering?: _$csstype.Property.ShapeRendering | undefined;
- speakAs?: _$csstype.Property.SpeakAs | undefined;
- stopColor?: _$csstype.Property.StopColor | undefined;
- stopOpacity?: _$csstype.Property.StopOpacity | undefined;
- stroke?: _$csstype.Property.Stroke | undefined;
- strokeColor?: _$csstype.Property.StrokeColor | undefined;
- strokeDasharray?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
- strokeDashoffset?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
- strokeLinecap?: _$csstype.Property.StrokeLinecap | undefined;
- strokeLinejoin?: _$csstype.Property.StrokeLinejoin | undefined;
- strokeMiterlimit?: _$csstype.Property.StrokeMiterlimit | undefined;
- strokeOpacity?: _$csstype.Property.StrokeOpacity | undefined;
- strokeWidth?: _$csstype.Property.StrokeWidth<string | number> | undefined;
- tabSize?: _$csstype.Property.TabSize<string | number> | undefined;
- tableLayout?: _$csstype.Property.TableLayout | undefined;
- textAlign?: _$csstype.Property.TextAlign | undefined;
- textAlignLast?: _$csstype.Property.TextAlignLast | undefined;
- textAnchor?: _$csstype.Property.TextAnchor | undefined;
- textAutospace?: _$csstype.Property.TextAutospace | undefined;
- textBox?: _$csstype.Property.TextBox | undefined;
- textBoxEdge?: _$csstype.Property.TextBoxEdge | undefined;
- textBoxTrim?: _$csstype.Property.TextBoxTrim | undefined;
- textCombineUpright?: _$csstype.Property.TextCombineUpright | undefined;
- textDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
- textDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
- textDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
- textDecorationSkipInk?: _$csstype.Property.TextDecorationSkipInk | undefined;
- textDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
- textDecorationThickness?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
- textEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
- textEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
- textEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
- textIndent?: _$csstype.Property.TextIndent<string | number> | undefined;
- textJustify?: _$csstype.Property.TextJustify | undefined;
- textOrientation?: _$csstype.Property.TextOrientation | undefined;
- textOverflow?: _$csstype.Property.TextOverflow | undefined;
- textRendering?: _$csstype.Property.TextRendering | undefined;
- textShadow?: _$csstype.Property.TextShadow | undefined;
- textSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
- textSpacingTrim?: _$csstype.Property.TextSpacingTrim | undefined;
- textTransform?: _$csstype.Property.TextTransform | undefined;
- textUnderlineOffset?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
- textUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
- textWrapMode?: _$csstype.Property.TextWrapMode | undefined;
- textWrapStyle?: _$csstype.Property.TextWrapStyle | undefined;
- timelineScope?: _$csstype.Property.TimelineScope | undefined;
- top?: _$csstype.Property.Top<string | number> | undefined;
- touchAction?: _$csstype.Property.TouchAction | undefined;
- transform?: _$csstype.Property.Transform | undefined;
- transformBox?: _$csstype.Property.TransformBox | undefined;
- transformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- transformStyle?: _$csstype.Property.TransformStyle | undefined;
- transitionBehavior?: _$csstype.Property.TransitionBehavior | undefined;
- transitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- transitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- transitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- transitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- translate?: _$csstype.Property.Translate<string | number> | undefined;
- unicodeBidi?: _$csstype.Property.UnicodeBidi | undefined;
- userSelect?: _$csstype.Property.UserSelect | undefined;
- vectorEffect?: _$csstype.Property.VectorEffect | undefined;
- verticalAlign?: _$csstype.Property.VerticalAlign<string | number> | undefined;
- viewTimelineAxis?: _$csstype.Property.ViewTimelineAxis | undefined;
- viewTimelineInset?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
- viewTimelineName?: _$csstype.Property.ViewTimelineName | undefined;
- viewTransitionClass?: _$csstype.Property.ViewTransitionClass | undefined;
- viewTransitionName?: _$csstype.Property.ViewTransitionName | undefined;
- visibility?: _$csstype.Property.Visibility | undefined;
- whiteSpace?: _$csstype.Property.WhiteSpace | undefined;
- whiteSpaceCollapse?: _$csstype.Property.WhiteSpaceCollapse | undefined;
- widows?: _$csstype.Property.Widows | undefined;
- width?: _$csstype.Property.Width<string | number> | undefined;
- willChange?: _$csstype.Property.WillChange | undefined;
- wordBreak?: _$csstype.Property.WordBreak | undefined;
- wordSpacing?: _$csstype.Property.WordSpacing<string | number> | undefined;
- wordWrap?: _$csstype.Property.WordWrap | undefined;
- writingMode?: _$csstype.Property.WritingMode | undefined;
- x?: _$csstype.Property.X<string | number> | undefined;
- y?: _$csstype.Property.Y<string | number> | undefined;
- zIndex?: _$csstype.Property.ZIndex | undefined;
- zoom?: _$csstype.Property.Zoom | undefined;
- all?: _$csstype.Globals | undefined;
- animation?: _$csstype.Property.Animation<string & {}> | undefined;
- animationRange?: _$csstype.Property.AnimationRange<string | number> | undefined;
- background?: _$csstype.Property.Background<string | number> | undefined;
- backgroundPosition?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
- border?: _$csstype.Property.Border<string | number> | undefined;
- borderBlock?: _$csstype.Property.BorderBlock<string | number> | undefined;
- borderBlockColor?: _$csstype.Property.BorderBlockColor | undefined;
- borderBlockEnd?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
- borderBlockStart?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
- borderBlockStyle?: _$csstype.Property.BorderBlockStyle | undefined;
- borderBlockWidth?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
- borderBottom?: _$csstype.Property.BorderBottom<string | number> | undefined;
- borderColor?: _$csstype.Property.BorderColor | undefined;
- borderImage?: _$csstype.Property.BorderImage | undefined;
- borderInline?: _$csstype.Property.BorderInline<string | number> | undefined;
- borderInlineColor?: _$csstype.Property.BorderInlineColor | undefined;
- borderInlineEnd?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
- borderInlineStart?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
- borderInlineStyle?: _$csstype.Property.BorderInlineStyle | undefined;
- borderInlineWidth?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
- borderLeft?: _$csstype.Property.BorderLeft<string | number> | undefined;
- borderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
- borderRight?: _$csstype.Property.BorderRight<string | number> | undefined;
- borderStyle?: _$csstype.Property.BorderStyle | undefined;
- borderTop?: _$csstype.Property.BorderTop<string | number> | undefined;
- borderWidth?: _$csstype.Property.BorderWidth<string | number> | undefined;
- caret?: _$csstype.Property.Caret | undefined;
- columnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
- columns?: _$csstype.Property.Columns<string | number> | undefined;
- containIntrinsicSize?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
- container?: _$csstype.Property.Container | undefined;
- flex?: _$csstype.Property.Flex<string | number> | undefined;
- flexFlow?: _$csstype.Property.FlexFlow | undefined;
- font?: _$csstype.Property.Font | undefined;
- gap?: _$csstype.Property.Gap<string | number> | undefined;
- grid?: _$csstype.Property.Grid | undefined;
- gridArea?: _$csstype.Property.GridArea | undefined;
- gridColumn?: _$csstype.Property.GridColumn | undefined;
- gridRow?: _$csstype.Property.GridRow | undefined;
- gridTemplate?: _$csstype.Property.GridTemplate | undefined;
- inset?: _$csstype.Property.Inset<string | number> | undefined;
- insetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
- insetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
- lineClamp?: _$csstype.Property.LineClamp | undefined;
- listStyle?: _$csstype.Property.ListStyle | undefined;
- margin?: _$csstype.Property.Margin<string | number> | undefined;
- marginBlock?: _$csstype.Property.MarginBlock<string | number> | undefined;
- marginInline?: _$csstype.Property.MarginInline<string | number> | undefined;
- mask?: _$csstype.Property.Mask<string | number> | undefined;
- maskBorder?: _$csstype.Property.MaskBorder | undefined;
- motion?: _$csstype.Property.Offset<string | number> | undefined;
- offset?: _$csstype.Property.Offset<string | number> | undefined;
- outline?: _$csstype.Property.Outline<string | number> | undefined;
- overflow?: _$csstype.Property.Overflow | undefined;
- overscrollBehavior?: _$csstype.Property.OverscrollBehavior | undefined;
- padding?: _$csstype.Property.Padding<string | number> | undefined;
- paddingBlock?: _$csstype.Property.PaddingBlock<string | number> | undefined;
- paddingInline?: _$csstype.Property.PaddingInline<string | number> | undefined;
- placeContent?: _$csstype.Property.PlaceContent | undefined;
- placeItems?: _$csstype.Property.PlaceItems | undefined;
- placeSelf?: _$csstype.Property.PlaceSelf | undefined;
- positionTry?: _$csstype.Property.PositionTry | undefined;
- scrollMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- scrollMarginBlock?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
- scrollMarginInline?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
- scrollPadding?: _$csstype.Property.ScrollPadding<string | number> | undefined;
- scrollPaddingBlock?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
- scrollPaddingInline?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
- scrollSnapMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- scrollTimeline?: _$csstype.Property.ScrollTimeline | undefined;
- textDecoration?: _$csstype.Property.TextDecoration<string | number> | undefined;
- textEmphasis?: _$csstype.Property.TextEmphasis | undefined;
- textWrap?: _$csstype.Property.TextWrap | undefined;
- transition?: _$csstype.Property.Transition<string & {}> | undefined;
- viewTimeline?: _$csstype.Property.ViewTimeline | undefined;
- MozAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- MozAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
- MozAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- MozAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- MozAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- MozAnimationName?: _$csstype.Property.AnimationName | undefined;
- MozAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- MozAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- MozAppearance?: _$csstype.Property.MozAppearance | undefined;
- MozBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
- MozBinding?: _$csstype.Property.MozBinding | undefined;
- MozBorderBottomColors?: _$csstype.Property.MozBorderBottomColors | undefined;
- MozBorderEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
- MozBorderEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
- MozBorderEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- MozBorderLeftColors?: _$csstype.Property.MozBorderLeftColors | undefined;
- MozBorderRightColors?: _$csstype.Property.MozBorderRightColors | undefined;
- MozBorderStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
- MozBorderStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
- MozBorderTopColors?: _$csstype.Property.MozBorderTopColors | undefined;
- MozBoxSizing?: _$csstype.Property.BoxSizing | undefined;
- MozColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
- MozColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
- MozColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- MozColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- MozContextProperties?: _$csstype.Property.MozContextProperties | undefined;
- MozFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
- MozFontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
- MozHyphens?: _$csstype.Property.Hyphens | undefined;
- MozMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- MozMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- MozOrient?: _$csstype.Property.MozOrient | undefined;
- MozOsxFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
- MozOutlineRadiusBottomleft?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
- MozOutlineRadiusBottomright?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
- MozOutlineRadiusTopleft?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
- MozOutlineRadiusTopright?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
- MozPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- MozPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- MozPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
- MozPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- MozStackSizing?: _$csstype.Property.MozStackSizing | undefined;
- MozTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
- MozTextBlink?: _$csstype.Property.MozTextBlink | undefined;
- MozTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
- MozTransform?: _$csstype.Property.Transform | undefined;
- MozTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- MozTransformStyle?: _$csstype.Property.TransformStyle | undefined;
- MozUserModify?: _$csstype.Property.MozUserModify | undefined;
- MozUserSelect?: _$csstype.Property.UserSelect | undefined;
- MozWindowDragging?: _$csstype.Property.MozWindowDragging | undefined;
- MozWindowShadow?: _$csstype.Property.MozWindowShadow | undefined;
- msAccelerator?: _$csstype.Property.MsAccelerator | undefined;
- msBlockProgression?: _$csstype.Property.MsBlockProgression | undefined;
- msContentZoomChaining?: _$csstype.Property.MsContentZoomChaining | undefined;
- msContentZoomLimitMax?: _$csstype.Property.MsContentZoomLimitMax | undefined;
- msContentZoomLimitMin?: _$csstype.Property.MsContentZoomLimitMin | undefined;
- msContentZoomSnapPoints?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
- msContentZoomSnapType?: _$csstype.Property.MsContentZoomSnapType | undefined;
- msContentZooming?: _$csstype.Property.MsContentZooming | undefined;
- msFilter?: _$csstype.Property.MsFilter | undefined;
- msFlexDirection?: _$csstype.Property.FlexDirection | undefined;
- msFlexPositive?: _$csstype.Property.FlexGrow | undefined;
- msFlowFrom?: _$csstype.Property.MsFlowFrom | undefined;
- msFlowInto?: _$csstype.Property.MsFlowInto | undefined;
- msGridColumns?: _$csstype.Property.MsGridColumns<string | number> | undefined;
- msGridRows?: _$csstype.Property.MsGridRows<string | number> | undefined;
- msHighContrastAdjust?: _$csstype.Property.MsHighContrastAdjust | undefined;
- msHyphenateLimitChars?: _$csstype.Property.MsHyphenateLimitChars | undefined;
- msHyphenateLimitLines?: _$csstype.Property.MsHyphenateLimitLines | undefined;
- msHyphenateLimitZone?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
- msHyphens?: _$csstype.Property.Hyphens | undefined;
- msImeAlign?: _$csstype.Property.MsImeAlign | undefined;
- msLineBreak?: _$csstype.Property.LineBreak | undefined;
- msOrder?: _$csstype.Property.Order | undefined;
- msOverflowStyle?: _$csstype.Property.MsOverflowStyle | undefined;
- msOverflowX?: _$csstype.Property.OverflowX | undefined;
- msOverflowY?: _$csstype.Property.OverflowY | undefined;
- msScrollChaining?: _$csstype.Property.MsScrollChaining | undefined;
- msScrollLimitXMax?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
- msScrollLimitXMin?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
- msScrollLimitYMax?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
- msScrollLimitYMin?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
- msScrollRails?: _$csstype.Property.MsScrollRails | undefined;
- msScrollSnapPointsX?: _$csstype.Property.MsScrollSnapPointsX | undefined;
- msScrollSnapPointsY?: _$csstype.Property.MsScrollSnapPointsY | undefined;
- msScrollSnapType?: _$csstype.Property.MsScrollSnapType | undefined;
- msScrollTranslation?: _$csstype.Property.MsScrollTranslation | undefined;
- msScrollbar3dlightColor?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
- msScrollbarArrowColor?: _$csstype.Property.MsScrollbarArrowColor | undefined;
- msScrollbarBaseColor?: _$csstype.Property.MsScrollbarBaseColor | undefined;
- msScrollbarDarkshadowColor?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
- msScrollbarFaceColor?: _$csstype.Property.MsScrollbarFaceColor | undefined;
- msScrollbarHighlightColor?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
- msScrollbarShadowColor?: _$csstype.Property.MsScrollbarShadowColor | undefined;
- msScrollbarTrackColor?: _$csstype.Property.MsScrollbarTrackColor | undefined;
- msTextAutospace?: _$csstype.Property.MsTextAutospace | undefined;
- msTextCombineHorizontal?: _$csstype.Property.TextCombineUpright | undefined;
- msTextOverflow?: _$csstype.Property.TextOverflow | undefined;
- msTouchAction?: _$csstype.Property.TouchAction | undefined;
- msTouchSelect?: _$csstype.Property.MsTouchSelect | undefined;
- msTransform?: _$csstype.Property.Transform | undefined;
- msTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- msTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- msTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- msTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- msTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- msUserSelect?: _$csstype.Property.MsUserSelect | undefined;
- msWordBreak?: _$csstype.Property.WordBreak | undefined;
- msWrapFlow?: _$csstype.Property.MsWrapFlow | undefined;
- msWrapMargin?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
- msWrapThrough?: _$csstype.Property.MsWrapThrough | undefined;
- msWritingMode?: _$csstype.Property.WritingMode | undefined;
- WebkitAlignContent?: _$csstype.Property.AlignContent | undefined;
- WebkitAlignItems?: _$csstype.Property.AlignItems | undefined;
- WebkitAlignSelf?: _$csstype.Property.AlignSelf | undefined;
- WebkitAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- WebkitAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
- WebkitAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- WebkitAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- WebkitAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- WebkitAnimationName?: _$csstype.Property.AnimationName | undefined;
- WebkitAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- WebkitAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- WebkitAppearance?: _$csstype.Property.WebkitAppearance | undefined;
- WebkitBackdropFilter?: _$csstype.Property.BackdropFilter | undefined;
- WebkitBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
- WebkitBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
- WebkitBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
- WebkitBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- WebkitBorderBeforeColor?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
- WebkitBorderBeforeStyle?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
- WebkitBorderBeforeWidth?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
- WebkitBorderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- WebkitBorderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- WebkitBorderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
- WebkitBorderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- WebkitBorderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- WebkitBoxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
- WebkitBoxReflect?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
- WebkitBoxShadow?: _$csstype.Property.BoxShadow | undefined;
- WebkitBoxSizing?: _$csstype.Property.BoxSizing | undefined;
- WebkitClipPath?: _$csstype.Property.ClipPath | undefined;
- WebkitColumnCount?: _$csstype.Property.ColumnCount | undefined;
- WebkitColumnFill?: _$csstype.Property.ColumnFill | undefined;
- WebkitColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
- WebkitColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
- WebkitColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- WebkitColumnSpan?: _$csstype.Property.ColumnSpan | undefined;
- WebkitColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- WebkitFilter?: _$csstype.Property.Filter | undefined;
- WebkitFlexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
- WebkitFlexDirection?: _$csstype.Property.FlexDirection | undefined;
- WebkitFlexGrow?: _$csstype.Property.FlexGrow | undefined;
- WebkitFlexShrink?: _$csstype.Property.FlexShrink | undefined;
- WebkitFlexWrap?: _$csstype.Property.FlexWrap | undefined;
- WebkitFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
- WebkitFontKerning?: _$csstype.Property.FontKerning | undefined;
- WebkitFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
- WebkitFontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
- WebkitHyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
- WebkitHyphens?: _$csstype.Property.Hyphens | undefined;
- WebkitInitialLetter?: _$csstype.Property.InitialLetter | undefined;
- WebkitJustifyContent?: _$csstype.Property.JustifyContent | undefined;
- WebkitLineBreak?: _$csstype.Property.LineBreak | undefined;
- WebkitLineClamp?: _$csstype.Property.WebkitLineClamp | undefined;
- WebkitLogicalHeight?: _$csstype.Property.BlockSize<string | number> | undefined;
- WebkitLogicalWidth?: _$csstype.Property.InlineSize<string | number> | undefined;
- WebkitMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- WebkitMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- WebkitMaskAttachment?: _$csstype.Property.WebkitMaskAttachment | undefined;
- WebkitMaskBoxImageOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- WebkitMaskBoxImageRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
- WebkitMaskBoxImageSlice?: _$csstype.Property.MaskBorderSlice | undefined;
- WebkitMaskBoxImageSource?: _$csstype.Property.MaskBorderSource | undefined;
- WebkitMaskBoxImageWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- WebkitMaskClip?: _$csstype.Property.WebkitMaskClip | undefined;
- WebkitMaskComposite?: _$csstype.Property.WebkitMaskComposite | undefined;
- WebkitMaskImage?: _$csstype.Property.WebkitMaskImage | undefined;
- WebkitMaskOrigin?: _$csstype.Property.WebkitMaskOrigin | undefined;
- WebkitMaskPosition?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
- WebkitMaskPositionX?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
- WebkitMaskPositionY?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
- WebkitMaskRepeat?: _$csstype.Property.WebkitMaskRepeat | undefined;
- WebkitMaskRepeatX?: _$csstype.Property.WebkitMaskRepeatX | undefined;
- WebkitMaskRepeatY?: _$csstype.Property.WebkitMaskRepeatY | undefined;
- WebkitMaskSize?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
- WebkitMaxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- WebkitOrder?: _$csstype.Property.Order | undefined;
- WebkitOverflowScrolling?: _$csstype.Property.WebkitOverflowScrolling | undefined;
- WebkitPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- WebkitPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- WebkitPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
- WebkitPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- WebkitPrintColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
- WebkitRubyPosition?: _$csstype.Property.RubyPosition | undefined;
- WebkitScrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
- WebkitShapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- WebkitTapHighlightColor?: _$csstype.Property.WebkitTapHighlightColor | undefined;
- WebkitTextCombine?: _$csstype.Property.TextCombineUpright | undefined;
- WebkitTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
- WebkitTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
- WebkitTextDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
- WebkitTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
- WebkitTextEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
- WebkitTextEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
- WebkitTextEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
- WebkitTextFillColor?: _$csstype.Property.WebkitTextFillColor | undefined;
- WebkitTextOrientation?: _$csstype.Property.TextOrientation | undefined;
- WebkitTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
- WebkitTextStrokeColor?: _$csstype.Property.WebkitTextStrokeColor | undefined;
- WebkitTextStrokeWidth?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
- WebkitTextUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
- WebkitTouchCallout?: _$csstype.Property.WebkitTouchCallout | undefined;
- WebkitTransform?: _$csstype.Property.Transform | undefined;
- WebkitTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- WebkitTransformStyle?: _$csstype.Property.TransformStyle | undefined;
- WebkitTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- WebkitTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- WebkitTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- WebkitTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- WebkitUserModify?: _$csstype.Property.WebkitUserModify | undefined;
- WebkitUserSelect?: _$csstype.Property.WebkitUserSelect | undefined;
- WebkitWritingMode?: _$csstype.Property.WritingMode | undefined;
- MozAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
- MozBorderImage?: _$csstype.Property.BorderImage | undefined;
- MozColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
- MozColumns?: _$csstype.Property.Columns<string | number> | undefined;
- MozOutlineRadius?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
- MozTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- msContentZoomLimit?: _$csstype.Property.MsContentZoomLimit | undefined;
- msContentZoomSnap?: _$csstype.Property.MsContentZoomSnap | undefined;
- msFlex?: _$csstype.Property.Flex<string | number> | undefined;
- msScrollLimit?: _$csstype.Property.MsScrollLimit | undefined;
- msScrollSnapX?: _$csstype.Property.MsScrollSnapX | undefined;
- msScrollSnapY?: _$csstype.Property.MsScrollSnapY | undefined;
- msTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- WebkitAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
- WebkitBorderBefore?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
- WebkitBorderImage?: _$csstype.Property.BorderImage | undefined;
- WebkitBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
- WebkitColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
- WebkitColumns?: _$csstype.Property.Columns<string | number> | undefined;
- WebkitFlex?: _$csstype.Property.Flex<string | number> | undefined;
- WebkitFlexFlow?: _$csstype.Property.FlexFlow | undefined;
- WebkitMask?: _$csstype.Property.WebkitMask<string | number> | undefined;
- WebkitMaskBoxImage?: _$csstype.Property.MaskBorder | undefined;
- WebkitTextEmphasis?: _$csstype.Property.TextEmphasis | undefined;
- WebkitTextStroke?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
- WebkitTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- boxAlign?: _$csstype.Property.BoxAlign | undefined;
- boxDirection?: _$csstype.Property.BoxDirection | undefined;
- boxFlex?: _$csstype.Property.BoxFlex | undefined;
- boxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
- boxLines?: _$csstype.Property.BoxLines | undefined;
- boxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- boxOrient?: _$csstype.Property.BoxOrient | undefined;
- boxPack?: _$csstype.Property.BoxPack | undefined;
- clip?: _$csstype.Property.Clip | undefined;
- fontStretch?: _$csstype.Property.FontStretch | undefined;
- gridColumnGap?: _$csstype.Property.GridColumnGap<string | number> | undefined;
- gridGap?: _$csstype.Property.GridGap<string | number> | undefined;
- gridRowGap?: _$csstype.Property.GridRowGap<string | number> | undefined;
- imeMode?: _$csstype.Property.ImeMode | undefined;
- insetArea?: _$csstype.Property.PositionArea | undefined;
- offsetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
- offsetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- offsetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- offsetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
- offsetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- offsetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- pageBreakAfter?: _$csstype.Property.PageBreakAfter | undefined;
- pageBreakBefore?: _$csstype.Property.PageBreakBefore | undefined;
- pageBreakInside?: _$csstype.Property.PageBreakInside | undefined;
- positionTryOptions?: _$csstype.Property.PositionTryFallbacks | undefined;
- scrollSnapCoordinate?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
- scrollSnapDestination?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
- scrollSnapPointsX?: _$csstype.Property.ScrollSnapPointsX | undefined;
- scrollSnapPointsY?: _$csstype.Property.ScrollSnapPointsY | undefined;
- scrollSnapTypeX?: _$csstype.Property.ScrollSnapTypeX | undefined;
- scrollSnapTypeY?: _$csstype.Property.ScrollSnapTypeY | undefined;
- KhtmlBoxAlign?: _$csstype.Property.BoxAlign | undefined;
- KhtmlBoxDirection?: _$csstype.Property.BoxDirection | undefined;
- KhtmlBoxFlex?: _$csstype.Property.BoxFlex | undefined;
- KhtmlBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
- KhtmlBoxLines?: _$csstype.Property.BoxLines | undefined;
- KhtmlBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- KhtmlBoxOrient?: _$csstype.Property.BoxOrient | undefined;
- KhtmlBoxPack?: _$csstype.Property.BoxPack | undefined;
- KhtmlLineBreak?: _$csstype.Property.LineBreak | undefined;
- KhtmlOpacity?: _$csstype.Property.Opacity | undefined;
- KhtmlUserSelect?: _$csstype.Property.UserSelect | undefined;
- MozBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
- MozBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
- MozBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- MozBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
- MozBorderRadiusBottomleft?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- MozBorderRadiusBottomright?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- MozBorderRadiusTopleft?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- MozBorderRadiusTopright?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- MozBoxAlign?: _$csstype.Property.BoxAlign | undefined;
- MozBoxDirection?: _$csstype.Property.BoxDirection | undefined;
- MozBoxFlex?: _$csstype.Property.BoxFlex | undefined;
- MozBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- MozBoxOrient?: _$csstype.Property.BoxOrient | undefined;
- MozBoxPack?: _$csstype.Property.BoxPack | undefined;
- MozBoxShadow?: _$csstype.Property.BoxShadow | undefined;
- MozColumnCount?: _$csstype.Property.ColumnCount | undefined;
- MozColumnFill?: _$csstype.Property.ColumnFill | undefined;
- MozFloatEdge?: _$csstype.Property.MozFloatEdge | undefined;
- MozForceBrokenImageIcon?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
- MozOpacity?: _$csstype.Property.Opacity | undefined;
- MozOutline?: _$csstype.Property.Outline<string | number> | undefined;
- MozOutlineColor?: _$csstype.Property.OutlineColor | undefined;
- MozOutlineStyle?: _$csstype.Property.OutlineStyle | undefined;
- MozOutlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- MozTextAlignLast?: _$csstype.Property.TextAlignLast | undefined;
- MozTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
- MozTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
- MozTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
- MozTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- MozTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- MozTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- MozTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- MozUserFocus?: _$csstype.Property.MozUserFocus | undefined;
- MozUserInput?: _$csstype.Property.MozUserInput | undefined;
- msImeMode?: _$csstype.Property.ImeMode | undefined;
- OAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
- OAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- OAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
- OAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- OAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- OAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- OAnimationName?: _$csstype.Property.AnimationName | undefined;
- OAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- OAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- OBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- OBorderImage?: _$csstype.Property.BorderImage | undefined;
- OObjectFit?: _$csstype.Property.ObjectFit | undefined;
- OObjectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- OTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
- OTextOverflow?: _$csstype.Property.TextOverflow | undefined;
- OTransform?: _$csstype.Property.Transform | undefined;
- OTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- OTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- OTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- OTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- OTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- OTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- WebkitBoxAlign?: _$csstype.Property.BoxAlign | undefined;
- WebkitBoxDirection?: _$csstype.Property.BoxDirection | undefined;
- WebkitBoxFlex?: _$csstype.Property.BoxFlex | undefined;
- WebkitBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
- WebkitBoxLines?: _$csstype.Property.BoxLines | undefined;
- WebkitBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- WebkitBoxOrient?: _$csstype.Property.BoxOrient | undefined;
- WebkitBoxPack?: _$csstype.Property.BoxPack | undefined;
- colorInterpolation?: _$csstype.Property.ColorInterpolation | undefined;
- colorRendering?: _$csstype.Property.ColorRendering | undefined;
- glyphOrientationVertical?: _$csstype.Property.GlyphOrientationVertical | undefined;
- "accent-color"?: _$csstype.Property.AccentColor | undefined;
- "align-content"?: _$csstype.Property.AlignContent | undefined;
- "align-items"?: _$csstype.Property.AlignItems | undefined;
- "align-self"?: _$csstype.Property.AlignSelf | undefined;
- "align-tracks"?: _$csstype.Property.AlignTracks | undefined;
- "alignment-baseline"?: _$csstype.Property.AlignmentBaseline | undefined;
- "anchor-name"?: _$csstype.Property.AnchorName | undefined;
- "anchor-scope"?: _$csstype.Property.AnchorScope | undefined;
- "animation-composition"?: _$csstype.Property.AnimationComposition | undefined;
- "animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "animation-name"?: _$csstype.Property.AnimationName | undefined;
- "animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "animation-range-end"?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
- "animation-range-start"?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
- "animation-timeline"?: _$csstype.Property.AnimationTimeline | undefined;
- "animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "aspect-ratio"?: _$csstype.Property.AspectRatio | undefined;
- "backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
- "backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
- "background-attachment"?: _$csstype.Property.BackgroundAttachment | undefined;
- "background-blend-mode"?: _$csstype.Property.BackgroundBlendMode | undefined;
- "background-clip"?: _$csstype.Property.BackgroundClip | undefined;
- "background-color"?: _$csstype.Property.BackgroundColor | undefined;
- "background-image"?: _$csstype.Property.BackgroundImage | undefined;
- "background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
- "background-position-x"?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
- "background-position-y"?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
- "background-repeat"?: _$csstype.Property.BackgroundRepeat | undefined;
- "background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "baseline-shift"?: _$csstype.Property.BaselineShift<string | number> | undefined;
- "block-size"?: _$csstype.Property.BlockSize<string | number> | undefined;
- "border-block-end-color"?: _$csstype.Property.BorderBlockEndColor | undefined;
- "border-block-end-style"?: _$csstype.Property.BorderBlockEndStyle | undefined;
- "border-block-end-width"?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
- "border-block-start-color"?: _$csstype.Property.BorderBlockStartColor | undefined;
- "border-block-start-style"?: _$csstype.Property.BorderBlockStartStyle | undefined;
- "border-block-start-width"?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
- "border-bottom-color"?: _$csstype.Property.BorderBottomColor | undefined;
- "border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- "border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- "border-bottom-style"?: _$csstype.Property.BorderBottomStyle | undefined;
- "border-bottom-width"?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
- "border-collapse"?: _$csstype.Property.BorderCollapse | undefined;
- "border-end-end-radius"?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
- "border-end-start-radius"?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
- "border-image-outset"?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
- "border-image-repeat"?: _$csstype.Property.BorderImageRepeat | undefined;
- "border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
- "border-image-source"?: _$csstype.Property.BorderImageSource | undefined;
- "border-image-width"?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
- "border-inline-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
- "border-inline-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
- "border-inline-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- "border-inline-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
- "border-inline-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
- "border-inline-start-width"?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
- "border-left-color"?: _$csstype.Property.BorderLeftColor | undefined;
- "border-left-style"?: _$csstype.Property.BorderLeftStyle | undefined;
- "border-left-width"?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
- "border-right-color"?: _$csstype.Property.BorderRightColor | undefined;
- "border-right-style"?: _$csstype.Property.BorderRightStyle | undefined;
- "border-right-width"?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
- "border-spacing"?: _$csstype.Property.BorderSpacing<string | number> | undefined;
- "border-start-end-radius"?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
- "border-start-start-radius"?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
- "border-top-color"?: _$csstype.Property.BorderTopColor | undefined;
- "border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- "border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- "border-top-style"?: _$csstype.Property.BorderTopStyle | undefined;
- "border-top-width"?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
- "box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
- "box-shadow"?: _$csstype.Property.BoxShadow | undefined;
- "box-sizing"?: _$csstype.Property.BoxSizing | undefined;
- "break-after"?: _$csstype.Property.BreakAfter | undefined;
- "break-before"?: _$csstype.Property.BreakBefore | undefined;
- "break-inside"?: _$csstype.Property.BreakInside | undefined;
- "caption-side"?: _$csstype.Property.CaptionSide | undefined;
- "caret-color"?: _$csstype.Property.CaretColor | undefined;
- "caret-shape"?: _$csstype.Property.CaretShape | undefined;
- "clip-path"?: _$csstype.Property.ClipPath | undefined;
- "clip-rule"?: _$csstype.Property.ClipRule | undefined;
- "color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
- "color-interpolation-filters"?: _$csstype.Property.ColorInterpolationFilters | undefined;
- "color-scheme"?: _$csstype.Property.ColorScheme | undefined;
- "column-count"?: _$csstype.Property.ColumnCount | undefined;
- "column-fill"?: _$csstype.Property.ColumnFill | undefined;
- "column-gap"?: _$csstype.Property.ColumnGap<string | number> | undefined;
- "column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
- "column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
- "column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- "column-span"?: _$csstype.Property.ColumnSpan | undefined;
- "column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- "contain-intrinsic-block-size"?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
- "contain-intrinsic-height"?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
- "contain-intrinsic-inline-size"?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
- "contain-intrinsic-width"?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
- "container-name"?: _$csstype.Property.ContainerName | undefined;
- "container-type"?: _$csstype.Property.ContainerType | undefined;
- "content-visibility"?: _$csstype.Property.ContentVisibility | undefined;
- "counter-increment"?: _$csstype.Property.CounterIncrement | undefined;
- "counter-reset"?: _$csstype.Property.CounterReset | undefined;
- "counter-set"?: _$csstype.Property.CounterSet | undefined;
- "dominant-baseline"?: _$csstype.Property.DominantBaseline | undefined;
- "empty-cells"?: _$csstype.Property.EmptyCells | undefined;
- "field-sizing"?: _$csstype.Property.FieldSizing | undefined;
- "fill-opacity"?: _$csstype.Property.FillOpacity | undefined;
- "fill-rule"?: _$csstype.Property.FillRule | undefined;
- "flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
- "flex-direction"?: _$csstype.Property.FlexDirection | undefined;
- "flex-grow"?: _$csstype.Property.FlexGrow | undefined;
- "flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
- "flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
- "flood-color"?: _$csstype.Property.FloodColor | undefined;
- "flood-opacity"?: _$csstype.Property.FloodOpacity | undefined;
- "font-family"?: _$csstype.Property.FontFamily | undefined;
- "font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
- "font-kerning"?: _$csstype.Property.FontKerning | undefined;
- "font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
- "font-optical-sizing"?: _$csstype.Property.FontOpticalSizing | undefined;
- "font-palette"?: _$csstype.Property.FontPalette | undefined;
- "font-size"?: _$csstype.Property.FontSize<string | number> | undefined;
- "font-size-adjust"?: _$csstype.Property.FontSizeAdjust | undefined;
- "font-smooth"?: _$csstype.Property.FontSmooth<string | number> | undefined;
- "font-style"?: _$csstype.Property.FontStyle | undefined;
- "font-synthesis"?: _$csstype.Property.FontSynthesis | undefined;
- "font-synthesis-position"?: _$csstype.Property.FontSynthesisPosition | undefined;
- "font-synthesis-small-caps"?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
- "font-synthesis-style"?: _$csstype.Property.FontSynthesisStyle | undefined;
- "font-synthesis-weight"?: _$csstype.Property.FontSynthesisWeight | undefined;
- "font-variant"?: _$csstype.Property.FontVariant | undefined;
- "font-variant-alternates"?: _$csstype.Property.FontVariantAlternates | undefined;
- "font-variant-caps"?: _$csstype.Property.FontVariantCaps | undefined;
- "font-variant-east-asian"?: _$csstype.Property.FontVariantEastAsian | undefined;
- "font-variant-emoji"?: _$csstype.Property.FontVariantEmoji | undefined;
- "font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
- "font-variant-numeric"?: _$csstype.Property.FontVariantNumeric | undefined;
- "font-variant-position"?: _$csstype.Property.FontVariantPosition | undefined;
- "font-variation-settings"?: _$csstype.Property.FontVariationSettings | undefined;
- "font-weight"?: _$csstype.Property.FontWeight | undefined;
- "font-width"?: _$csstype.Property.FontWidth | undefined;
- "forced-color-adjust"?: _$csstype.Property.ForcedColorAdjust | undefined;
- "grid-auto-columns"?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
- "grid-auto-flow"?: _$csstype.Property.GridAutoFlow | undefined;
- "grid-auto-rows"?: _$csstype.Property.GridAutoRows<string | number> | undefined;
- "grid-column-end"?: _$csstype.Property.GridColumnEnd | undefined;
- "grid-column-start"?: _$csstype.Property.GridColumnStart | undefined;
- "grid-row-end"?: _$csstype.Property.GridRowEnd | undefined;
- "grid-row-start"?: _$csstype.Property.GridRowStart | undefined;
- "grid-template-areas"?: _$csstype.Property.GridTemplateAreas | undefined;
- "grid-template-columns"?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
- "grid-template-rows"?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
- "hanging-punctuation"?: _$csstype.Property.HangingPunctuation | undefined;
- "hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
- "hyphenate-limit-chars"?: _$csstype.Property.HyphenateLimitChars | undefined;
- "image-orientation"?: _$csstype.Property.ImageOrientation | undefined;
- "image-rendering"?: _$csstype.Property.ImageRendering | undefined;
- "image-resolution"?: _$csstype.Property.ImageResolution | undefined;
- "initial-letter"?: _$csstype.Property.InitialLetter | undefined;
- "initial-letter-align"?: _$csstype.Property.InitialLetterAlign | undefined;
- "inline-size"?: _$csstype.Property.InlineSize<string | number> | undefined;
- "inset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- "inset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- "inset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- "inset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- "interpolate-size"?: _$csstype.Property.InterpolateSize | undefined;
- "justify-content"?: _$csstype.Property.JustifyContent | undefined;
- "justify-items"?: _$csstype.Property.JustifyItems | undefined;
- "justify-self"?: _$csstype.Property.JustifySelf | undefined;
- "justify-tracks"?: _$csstype.Property.JustifyTracks | undefined;
- "letter-spacing"?: _$csstype.Property.LetterSpacing<string | number> | undefined;
- "lighting-color"?: _$csstype.Property.LightingColor | undefined;
- "line-break"?: _$csstype.Property.LineBreak | undefined;
- "line-height"?: _$csstype.Property.LineHeight<string | number> | undefined;
- "line-height-step"?: _$csstype.Property.LineHeightStep<string | number> | undefined;
- "list-style-image"?: _$csstype.Property.ListStyleImage | undefined;
- "list-style-position"?: _$csstype.Property.ListStylePosition | undefined;
- "list-style-type"?: _$csstype.Property.ListStyleType | undefined;
- "margin-block-end"?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
- "margin-block-start"?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
- "margin-bottom"?: _$csstype.Property.MarginBottom<string | number> | undefined;
- "margin-inline-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- "margin-inline-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- "margin-left"?: _$csstype.Property.MarginLeft<string | number> | undefined;
- "margin-right"?: _$csstype.Property.MarginRight<string | number> | undefined;
- "margin-top"?: _$csstype.Property.MarginTop<string | number> | undefined;
- "margin-trim"?: _$csstype.Property.MarginTrim | undefined;
- "marker-end"?: _$csstype.Property.MarkerEnd | undefined;
- "marker-mid"?: _$csstype.Property.MarkerMid | undefined;
- "marker-start"?: _$csstype.Property.MarkerStart | undefined;
- "mask-border-mode"?: _$csstype.Property.MaskBorderMode | undefined;
- "mask-border-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- "mask-border-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
- "mask-border-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
- "mask-border-source"?: _$csstype.Property.MaskBorderSource | undefined;
- "mask-border-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- "mask-clip"?: _$csstype.Property.MaskClip | undefined;
- "mask-composite"?: _$csstype.Property.MaskComposite | undefined;
- "mask-image"?: _$csstype.Property.MaskImage | undefined;
- "mask-mode"?: _$csstype.Property.MaskMode | undefined;
- "mask-origin"?: _$csstype.Property.MaskOrigin | undefined;
- "mask-position"?: _$csstype.Property.MaskPosition<string | number> | undefined;
- "mask-repeat"?: _$csstype.Property.MaskRepeat | undefined;
- "mask-size"?: _$csstype.Property.MaskSize<string | number> | undefined;
- "mask-type"?: _$csstype.Property.MaskType | undefined;
- "masonry-auto-flow"?: _$csstype.Property.MasonryAutoFlow | undefined;
- "math-depth"?: _$csstype.Property.MathDepth | undefined;
- "math-shift"?: _$csstype.Property.MathShift | undefined;
- "math-style"?: _$csstype.Property.MathStyle | undefined;
- "max-block-size"?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
- "max-height"?: _$csstype.Property.MaxHeight<string | number> | undefined;
- "max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- "max-lines"?: _$csstype.Property.MaxLines | undefined;
- "max-width"?: _$csstype.Property.MaxWidth<string | number> | undefined;
- "min-block-size"?: _$csstype.Property.MinBlockSize<string | number> | undefined;
- "min-height"?: _$csstype.Property.MinHeight<string | number> | undefined;
- "min-inline-size"?: _$csstype.Property.MinInlineSize<string | number> | undefined;
- "min-width"?: _$csstype.Property.MinWidth<string | number> | undefined;
- "mix-blend-mode"?: _$csstype.Property.MixBlendMode | undefined;
- "motion-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- "motion-path"?: _$csstype.Property.OffsetPath | undefined;
- "motion-rotation"?: _$csstype.Property.OffsetRotate | undefined;
- "object-fit"?: _$csstype.Property.ObjectFit | undefined;
- "object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- "object-view-box"?: _$csstype.Property.ObjectViewBox | undefined;
- "offset-anchor"?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
- "offset-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- "offset-path"?: _$csstype.Property.OffsetPath | undefined;
- "offset-position"?: _$csstype.Property.OffsetPosition<string | number> | undefined;
- "offset-rotate"?: _$csstype.Property.OffsetRotate | undefined;
- "offset-rotation"?: _$csstype.Property.OffsetRotate | undefined;
- "outline-color"?: _$csstype.Property.OutlineColor | undefined;
- "outline-offset"?: _$csstype.Property.OutlineOffset<string | number> | undefined;
- "outline-style"?: _$csstype.Property.OutlineStyle | undefined;
- "outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- "overflow-anchor"?: _$csstype.Property.OverflowAnchor | undefined;
- "overflow-block"?: _$csstype.Property.OverflowBlock | undefined;
- "overflow-clip-box"?: _$csstype.Property.OverflowClipBox | undefined;
- "overflow-clip-margin"?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
- "overflow-inline"?: _$csstype.Property.OverflowInline | undefined;
- "overflow-wrap"?: _$csstype.Property.OverflowWrap | undefined;
- "overflow-x"?: _$csstype.Property.OverflowX | undefined;
- "overflow-y"?: _$csstype.Property.OverflowY | undefined;
- "overscroll-behavior-block"?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
- "overscroll-behavior-inline"?: _$csstype.Property.OverscrollBehaviorInline | undefined;
- "overscroll-behavior-x"?: _$csstype.Property.OverscrollBehaviorX | undefined;
- "overscroll-behavior-y"?: _$csstype.Property.OverscrollBehaviorY | undefined;
- "padding-block-end"?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
- "padding-block-start"?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
- "padding-bottom"?: _$csstype.Property.PaddingBottom<string | number> | undefined;
- "padding-inline-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- "padding-inline-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- "padding-left"?: _$csstype.Property.PaddingLeft<string | number> | undefined;
- "padding-right"?: _$csstype.Property.PaddingRight<string | number> | undefined;
- "padding-top"?: _$csstype.Property.PaddingTop<string | number> | undefined;
- "paint-order"?: _$csstype.Property.PaintOrder | undefined;
- "perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- "pointer-events"?: _$csstype.Property.PointerEvents | undefined;
- "position-anchor"?: _$csstype.Property.PositionAnchor | undefined;
- "position-area"?: _$csstype.Property.PositionArea | undefined;
- "position-try-fallbacks"?: _$csstype.Property.PositionTryFallbacks | undefined;
- "position-try-order"?: _$csstype.Property.PositionTryOrder | undefined;
- "position-visibility"?: _$csstype.Property.PositionVisibility | undefined;
- "print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
- "row-gap"?: _$csstype.Property.RowGap<string | number> | undefined;
- "ruby-align"?: _$csstype.Property.RubyAlign | undefined;
- "ruby-merge"?: _$csstype.Property.RubyMerge | undefined;
- "ruby-overhang"?: _$csstype.Property.RubyOverhang | undefined;
- "ruby-position"?: _$csstype.Property.RubyPosition | undefined;
- "scroll-behavior"?: _$csstype.Property.ScrollBehavior | undefined;
- "scroll-initial-target"?: _$csstype.Property.ScrollInitialTarget | undefined;
- "scroll-margin-block-end"?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
- "scroll-margin-block-start"?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
- "scroll-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- "scroll-margin-inline-end"?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
- "scroll-margin-inline-start"?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
- "scroll-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- "scroll-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- "scroll-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- "scroll-padding-block-end"?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
- "scroll-padding-block-start"?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
- "scroll-padding-bottom"?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
- "scroll-padding-inline-end"?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
- "scroll-padding-inline-start"?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
- "scroll-padding-left"?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
- "scroll-padding-right"?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
- "scroll-padding-top"?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
- "scroll-snap-align"?: _$csstype.Property.ScrollSnapAlign | undefined;
- "scroll-snap-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- "scroll-snap-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- "scroll-snap-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- "scroll-snap-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- "scroll-snap-stop"?: _$csstype.Property.ScrollSnapStop | undefined;
- "scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
- "scroll-timeline-axis"?: _$csstype.Property.ScrollTimelineAxis | undefined;
- "scroll-timeline-name"?: _$csstype.Property.ScrollTimelineName | undefined;
- "scrollbar-color"?: _$csstype.Property.ScrollbarColor | undefined;
- "scrollbar-gutter"?: _$csstype.Property.ScrollbarGutter | undefined;
- "scrollbar-width"?: _$csstype.Property.ScrollbarWidth | undefined;
- "shape-image-threshold"?: _$csstype.Property.ShapeImageThreshold | undefined;
- "shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- "shape-outside"?: _$csstype.Property.ShapeOutside | undefined;
- "shape-rendering"?: _$csstype.Property.ShapeRendering | undefined;
- "speak-as"?: _$csstype.Property.SpeakAs | undefined;
- "stop-color"?: _$csstype.Property.StopColor | undefined;
- "stop-opacity"?: _$csstype.Property.StopOpacity | undefined;
- "stroke-color"?: _$csstype.Property.StrokeColor | undefined;
- "stroke-dasharray"?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
- "stroke-dashoffset"?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
- "stroke-linecap"?: _$csstype.Property.StrokeLinecap | undefined;
- "stroke-linejoin"?: _$csstype.Property.StrokeLinejoin | undefined;
- "stroke-miterlimit"?: _$csstype.Property.StrokeMiterlimit | undefined;
- "stroke-opacity"?: _$csstype.Property.StrokeOpacity | undefined;
- "stroke-width"?: _$csstype.Property.StrokeWidth<string | number> | undefined;
- "tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
- "table-layout"?: _$csstype.Property.TableLayout | undefined;
- "text-align"?: _$csstype.Property.TextAlign | undefined;
- "text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
- "text-anchor"?: _$csstype.Property.TextAnchor | undefined;
- "text-autospace"?: _$csstype.Property.TextAutospace | undefined;
- "text-box"?: _$csstype.Property.TextBox | undefined;
- "text-box-edge"?: _$csstype.Property.TextBoxEdge | undefined;
- "text-box-trim"?: _$csstype.Property.TextBoxTrim | undefined;
- "text-combine-upright"?: _$csstype.Property.TextCombineUpright | undefined;
- "text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
- "text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
- "text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
- "text-decoration-skip-ink"?: _$csstype.Property.TextDecorationSkipInk | undefined;
- "text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
- "text-decoration-thickness"?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
- "text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
- "text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
- "text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
- "text-indent"?: _$csstype.Property.TextIndent<string | number> | undefined;
- "text-justify"?: _$csstype.Property.TextJustify | undefined;
- "text-orientation"?: _$csstype.Property.TextOrientation | undefined;
- "text-overflow"?: _$csstype.Property.TextOverflow | undefined;
- "text-rendering"?: _$csstype.Property.TextRendering | undefined;
- "text-shadow"?: _$csstype.Property.TextShadow | undefined;
- "text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
- "text-spacing-trim"?: _$csstype.Property.TextSpacingTrim | undefined;
- "text-transform"?: _$csstype.Property.TextTransform | undefined;
- "text-underline-offset"?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
- "text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
- "text-wrap-mode"?: _$csstype.Property.TextWrapMode | undefined;
- "text-wrap-style"?: _$csstype.Property.TextWrapStyle | undefined;
- "timeline-scope"?: _$csstype.Property.TimelineScope | undefined;
- "touch-action"?: _$csstype.Property.TouchAction | undefined;
- "transform-box"?: _$csstype.Property.TransformBox | undefined;
- "transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "transform-style"?: _$csstype.Property.TransformStyle | undefined;
- "transition-behavior"?: _$csstype.Property.TransitionBehavior | undefined;
- "transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "unicode-bidi"?: _$csstype.Property.UnicodeBidi | undefined;
- "user-select"?: _$csstype.Property.UserSelect | undefined;
- "vector-effect"?: _$csstype.Property.VectorEffect | undefined;
- "vertical-align"?: _$csstype.Property.VerticalAlign<string | number> | undefined;
- "view-timeline-axis"?: _$csstype.Property.ViewTimelineAxis | undefined;
- "view-timeline-inset"?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
- "view-timeline-name"?: _$csstype.Property.ViewTimelineName | undefined;
- "view-transition-class"?: _$csstype.Property.ViewTransitionClass | undefined;
- "view-transition-name"?: _$csstype.Property.ViewTransitionName | undefined;
- "white-space"?: _$csstype.Property.WhiteSpace | undefined;
- "white-space-collapse"?: _$csstype.Property.WhiteSpaceCollapse | undefined;
- "will-change"?: _$csstype.Property.WillChange | undefined;
- "word-break"?: _$csstype.Property.WordBreak | undefined;
- "word-spacing"?: _$csstype.Property.WordSpacing<string | number> | undefined;
- "word-wrap"?: _$csstype.Property.WordWrap | undefined;
- "writing-mode"?: _$csstype.Property.WritingMode | undefined;
- "z-index"?: _$csstype.Property.ZIndex | undefined;
- "animation-range"?: _$csstype.Property.AnimationRange<string | number> | undefined;
- "background-position"?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
- "border-block"?: _$csstype.Property.BorderBlock<string | number> | undefined;
- "border-block-color"?: _$csstype.Property.BorderBlockColor | undefined;
- "border-block-end"?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
- "border-block-start"?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
- "border-block-style"?: _$csstype.Property.BorderBlockStyle | undefined;
- "border-block-width"?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
- "border-bottom"?: _$csstype.Property.BorderBottom<string | number> | undefined;
- "border-color"?: _$csstype.Property.BorderColor | undefined;
- "border-image"?: _$csstype.Property.BorderImage | undefined;
- "border-inline"?: _$csstype.Property.BorderInline<string | number> | undefined;
- "border-inline-color"?: _$csstype.Property.BorderInlineColor | undefined;
- "border-inline-end"?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
- "border-inline-start"?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
- "border-inline-style"?: _$csstype.Property.BorderInlineStyle | undefined;
- "border-inline-width"?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
- "border-left"?: _$csstype.Property.BorderLeft<string | number> | undefined;
- "border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
- "border-right"?: _$csstype.Property.BorderRight<string | number> | undefined;
- "border-style"?: _$csstype.Property.BorderStyle | undefined;
- "border-top"?: _$csstype.Property.BorderTop<string | number> | undefined;
- "border-width"?: _$csstype.Property.BorderWidth<string | number> | undefined;
- "column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
- "contain-intrinsic-size"?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
- "flex-flow"?: _$csstype.Property.FlexFlow | undefined;
- "grid-area"?: _$csstype.Property.GridArea | undefined;
- "grid-column"?: _$csstype.Property.GridColumn | undefined;
- "grid-row"?: _$csstype.Property.GridRow | undefined;
- "grid-template"?: _$csstype.Property.GridTemplate | undefined;
- "inset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
- "inset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
- "line-clamp"?: _$csstype.Property.LineClamp | undefined;
- "list-style"?: _$csstype.Property.ListStyle | undefined;
- "margin-block"?: _$csstype.Property.MarginBlock<string | number> | undefined;
- "margin-inline"?: _$csstype.Property.MarginInline<string | number> | undefined;
- "mask-border"?: _$csstype.Property.MaskBorder | undefined;
- "overscroll-behavior"?: _$csstype.Property.OverscrollBehavior | undefined;
- "padding-block"?: _$csstype.Property.PaddingBlock<string | number> | undefined;
- "padding-inline"?: _$csstype.Property.PaddingInline<string | number> | undefined;
- "place-content"?: _$csstype.Property.PlaceContent | undefined;
- "place-items"?: _$csstype.Property.PlaceItems | undefined;
- "place-self"?: _$csstype.Property.PlaceSelf | undefined;
- "position-try"?: _$csstype.Property.PositionTry | undefined;
- "scroll-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- "scroll-margin-block"?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
- "scroll-margin-inline"?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
- "scroll-padding"?: _$csstype.Property.ScrollPadding<string | number> | undefined;
- "scroll-padding-block"?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
- "scroll-padding-inline"?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
- "scroll-snap-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- "scroll-timeline"?: _$csstype.Property.ScrollTimeline | undefined;
- "text-decoration"?: _$csstype.Property.TextDecoration<string | number> | undefined;
- "text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
- "text-wrap"?: _$csstype.Property.TextWrap | undefined;
- "view-timeline"?: _$csstype.Property.ViewTimeline | undefined;
- "-moz-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "-moz-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "-moz-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "-moz-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "-moz-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "-moz-animation-name"?: _$csstype.Property.AnimationName | undefined;
- "-moz-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "-moz-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "-moz-appearance"?: _$csstype.Property.MozAppearance | undefined;
- "-moz-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
- "-moz-binding"?: _$csstype.Property.MozBinding | undefined;
- "-moz-border-bottom-colors"?: _$csstype.Property.MozBorderBottomColors | undefined;
- "-moz-border-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
- "-moz-border-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
- "-moz-border-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- "-moz-border-left-colors"?: _$csstype.Property.MozBorderLeftColors | undefined;
- "-moz-border-right-colors"?: _$csstype.Property.MozBorderRightColors | undefined;
- "-moz-border-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
- "-moz-border-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
- "-moz-border-top-colors"?: _$csstype.Property.MozBorderTopColors | undefined;
- "-moz-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
- "-moz-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
- "-moz-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
- "-moz-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- "-moz-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- "-moz-context-properties"?: _$csstype.Property.MozContextProperties | undefined;
- "-moz-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
- "-moz-font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
- "-moz-hyphens"?: _$csstype.Property.Hyphens | undefined;
- "-moz-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- "-moz-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- "-moz-orient"?: _$csstype.Property.MozOrient | undefined;
- "-moz-osx-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
- "-moz-outline-radius-bottomleft"?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
- "-moz-outline-radius-bottomright"?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
- "-moz-outline-radius-topleft"?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
- "-moz-outline-radius-topright"?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
- "-moz-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- "-moz-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- "-moz-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
- "-moz-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- "-moz-stack-sizing"?: _$csstype.Property.MozStackSizing | undefined;
- "-moz-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
- "-moz-text-blink"?: _$csstype.Property.MozTextBlink | undefined;
- "-moz-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
- "-moz-transform"?: _$csstype.Property.Transform | undefined;
- "-moz-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-moz-transform-style"?: _$csstype.Property.TransformStyle | undefined;
- "-moz-user-modify"?: _$csstype.Property.MozUserModify | undefined;
- "-moz-user-select"?: _$csstype.Property.UserSelect | undefined;
- "-moz-window-dragging"?: _$csstype.Property.MozWindowDragging | undefined;
- "-moz-window-shadow"?: _$csstype.Property.MozWindowShadow | undefined;
- "-ms-accelerator"?: _$csstype.Property.MsAccelerator | undefined;
- "-ms-block-progression"?: _$csstype.Property.MsBlockProgression | undefined;
- "-ms-content-zoom-chaining"?: _$csstype.Property.MsContentZoomChaining | undefined;
- "-ms-content-zoom-limit-max"?: _$csstype.Property.MsContentZoomLimitMax | undefined;
- "-ms-content-zoom-limit-min"?: _$csstype.Property.MsContentZoomLimitMin | undefined;
- "-ms-content-zoom-snap-points"?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
- "-ms-content-zoom-snap-type"?: _$csstype.Property.MsContentZoomSnapType | undefined;
- "-ms-content-zooming"?: _$csstype.Property.MsContentZooming | undefined;
- "-ms-filter"?: _$csstype.Property.MsFilter | undefined;
- "-ms-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
- "-ms-flex-positive"?: _$csstype.Property.FlexGrow | undefined;
- "-ms-flow-from"?: _$csstype.Property.MsFlowFrom | undefined;
- "-ms-flow-into"?: _$csstype.Property.MsFlowInto | undefined;
- "-ms-grid-columns"?: _$csstype.Property.MsGridColumns<string | number> | undefined;
- "-ms-grid-rows"?: _$csstype.Property.MsGridRows<string | number> | undefined;
- "-ms-high-contrast-adjust"?: _$csstype.Property.MsHighContrastAdjust | undefined;
- "-ms-hyphenate-limit-chars"?: _$csstype.Property.MsHyphenateLimitChars | undefined;
- "-ms-hyphenate-limit-lines"?: _$csstype.Property.MsHyphenateLimitLines | undefined;
- "-ms-hyphenate-limit-zone"?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
- "-ms-hyphens"?: _$csstype.Property.Hyphens | undefined;
- "-ms-ime-align"?: _$csstype.Property.MsImeAlign | undefined;
- "-ms-line-break"?: _$csstype.Property.LineBreak | undefined;
- "-ms-order"?: _$csstype.Property.Order | undefined;
- "-ms-overflow-style"?: _$csstype.Property.MsOverflowStyle | undefined;
- "-ms-overflow-x"?: _$csstype.Property.OverflowX | undefined;
- "-ms-overflow-y"?: _$csstype.Property.OverflowY | undefined;
- "-ms-scroll-chaining"?: _$csstype.Property.MsScrollChaining | undefined;
- "-ms-scroll-limit-x-max"?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
- "-ms-scroll-limit-x-min"?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
- "-ms-scroll-limit-y-max"?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
- "-ms-scroll-limit-y-min"?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
- "-ms-scroll-rails"?: _$csstype.Property.MsScrollRails | undefined;
- "-ms-scroll-snap-points-x"?: _$csstype.Property.MsScrollSnapPointsX | undefined;
- "-ms-scroll-snap-points-y"?: _$csstype.Property.MsScrollSnapPointsY | undefined;
- "-ms-scroll-snap-type"?: _$csstype.Property.MsScrollSnapType | undefined;
- "-ms-scroll-translation"?: _$csstype.Property.MsScrollTranslation | undefined;
- "-ms-scrollbar-3dlight-color"?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
- "-ms-scrollbar-arrow-color"?: _$csstype.Property.MsScrollbarArrowColor | undefined;
- "-ms-scrollbar-base-color"?: _$csstype.Property.MsScrollbarBaseColor | undefined;
- "-ms-scrollbar-darkshadow-color"?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
- "-ms-scrollbar-face-color"?: _$csstype.Property.MsScrollbarFaceColor | undefined;
- "-ms-scrollbar-highlight-color"?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
- "-ms-scrollbar-shadow-color"?: _$csstype.Property.MsScrollbarShadowColor | undefined;
- "-ms-scrollbar-track-color"?: _$csstype.Property.MsScrollbarTrackColor | undefined;
- "-ms-text-autospace"?: _$csstype.Property.MsTextAutospace | undefined;
- "-ms-text-combine-horizontal"?: _$csstype.Property.TextCombineUpright | undefined;
- "-ms-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
- "-ms-touch-action"?: _$csstype.Property.TouchAction | undefined;
- "-ms-touch-select"?: _$csstype.Property.MsTouchSelect | undefined;
- "-ms-transform"?: _$csstype.Property.Transform | undefined;
- "-ms-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-ms-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-ms-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-ms-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-ms-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-ms-user-select"?: _$csstype.Property.MsUserSelect | undefined;
- "-ms-word-break"?: _$csstype.Property.WordBreak | undefined;
- "-ms-wrap-flow"?: _$csstype.Property.MsWrapFlow | undefined;
- "-ms-wrap-margin"?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
- "-ms-wrap-through"?: _$csstype.Property.MsWrapThrough | undefined;
- "-ms-writing-mode"?: _$csstype.Property.WritingMode | undefined;
- "-webkit-align-content"?: _$csstype.Property.AlignContent | undefined;
- "-webkit-align-items"?: _$csstype.Property.AlignItems | undefined;
- "-webkit-align-self"?: _$csstype.Property.AlignSelf | undefined;
- "-webkit-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "-webkit-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "-webkit-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "-webkit-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "-webkit-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "-webkit-animation-name"?: _$csstype.Property.AnimationName | undefined;
- "-webkit-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "-webkit-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "-webkit-appearance"?: _$csstype.Property.WebkitAppearance | undefined;
- "-webkit-backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
- "-webkit-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
- "-webkit-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
- "-webkit-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
- "-webkit-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "-webkit-border-before-color"?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
- "-webkit-border-before-style"?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
- "-webkit-border-before-width"?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
- "-webkit-border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- "-webkit-border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- "-webkit-border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
- "-webkit-border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- "-webkit-border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- "-webkit-box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
- "-webkit-box-reflect"?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
- "-webkit-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
- "-webkit-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
- "-webkit-clip-path"?: _$csstype.Property.ClipPath | undefined;
- "-webkit-column-count"?: _$csstype.Property.ColumnCount | undefined;
- "-webkit-column-fill"?: _$csstype.Property.ColumnFill | undefined;
- "-webkit-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
- "-webkit-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
- "-webkit-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- "-webkit-column-span"?: _$csstype.Property.ColumnSpan | undefined;
- "-webkit-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- "-webkit-filter"?: _$csstype.Property.Filter | undefined;
- "-webkit-flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
- "-webkit-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
- "-webkit-flex-grow"?: _$csstype.Property.FlexGrow | undefined;
- "-webkit-flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
- "-webkit-flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
- "-webkit-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
- "-webkit-font-kerning"?: _$csstype.Property.FontKerning | undefined;
- "-webkit-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
- "-webkit-font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
- "-webkit-hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
- "-webkit-hyphens"?: _$csstype.Property.Hyphens | undefined;
- "-webkit-initial-letter"?: _$csstype.Property.InitialLetter | undefined;
- "-webkit-justify-content"?: _$csstype.Property.JustifyContent | undefined;
- "-webkit-line-break"?: _$csstype.Property.LineBreak | undefined;
- "-webkit-line-clamp"?: _$csstype.Property.WebkitLineClamp | undefined;
- "-webkit-logical-height"?: _$csstype.Property.BlockSize<string | number> | undefined;
- "-webkit-logical-width"?: _$csstype.Property.InlineSize<string | number> | undefined;
- "-webkit-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- "-webkit-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- "-webkit-mask-attachment"?: _$csstype.Property.WebkitMaskAttachment | undefined;
- "-webkit-mask-box-image-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- "-webkit-mask-box-image-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
- "-webkit-mask-box-image-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
- "-webkit-mask-box-image-source"?: _$csstype.Property.MaskBorderSource | undefined;
- "-webkit-mask-box-image-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- "-webkit-mask-clip"?: _$csstype.Property.WebkitMaskClip | undefined;
- "-webkit-mask-composite"?: _$csstype.Property.WebkitMaskComposite | undefined;
- "-webkit-mask-image"?: _$csstype.Property.WebkitMaskImage | undefined;
- "-webkit-mask-origin"?: _$csstype.Property.WebkitMaskOrigin | undefined;
- "-webkit-mask-position"?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
- "-webkit-mask-position-x"?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
- "-webkit-mask-position-y"?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
- "-webkit-mask-repeat"?: _$csstype.Property.WebkitMaskRepeat | undefined;
- "-webkit-mask-repeat-x"?: _$csstype.Property.WebkitMaskRepeatX | undefined;
- "-webkit-mask-repeat-y"?: _$csstype.Property.WebkitMaskRepeatY | undefined;
- "-webkit-mask-size"?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
- "-webkit-max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- "-webkit-order"?: _$csstype.Property.Order | undefined;
- "-webkit-overflow-scrolling"?: _$csstype.Property.WebkitOverflowScrolling | undefined;
- "-webkit-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- "-webkit-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- "-webkit-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
- "-webkit-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- "-webkit-print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
- "-webkit-ruby-position"?: _$csstype.Property.RubyPosition | undefined;
- "-webkit-scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
- "-webkit-shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- "-webkit-tap-highlight-color"?: _$csstype.Property.WebkitTapHighlightColor | undefined;
- "-webkit-text-combine"?: _$csstype.Property.TextCombineUpright | undefined;
- "-webkit-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
- "-webkit-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
- "-webkit-text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
- "-webkit-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
- "-webkit-text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
- "-webkit-text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
- "-webkit-text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
- "-webkit-text-fill-color"?: _$csstype.Property.WebkitTextFillColor | undefined;
- "-webkit-text-orientation"?: _$csstype.Property.TextOrientation | undefined;
- "-webkit-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
- "-webkit-text-stroke-color"?: _$csstype.Property.WebkitTextStrokeColor | undefined;
- "-webkit-text-stroke-width"?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
- "-webkit-text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
- "-webkit-touch-callout"?: _$csstype.Property.WebkitTouchCallout | undefined;
- "-webkit-transform"?: _$csstype.Property.Transform | undefined;
- "-webkit-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-webkit-transform-style"?: _$csstype.Property.TransformStyle | undefined;
- "-webkit-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-webkit-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-webkit-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-webkit-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-webkit-user-modify"?: _$csstype.Property.WebkitUserModify | undefined;
- "-webkit-user-select"?: _$csstype.Property.WebkitUserSelect | undefined;
- "-webkit-writing-mode"?: _$csstype.Property.WritingMode | undefined;
- "-moz-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
- "-moz-border-image"?: _$csstype.Property.BorderImage | undefined;
- "-moz-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
- "-moz-columns"?: _$csstype.Property.Columns<string | number> | undefined;
- "-moz-outline-radius"?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
- "-moz-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "-ms-content-zoom-limit"?: _$csstype.Property.MsContentZoomLimit | undefined;
- "-ms-content-zoom-snap"?: _$csstype.Property.MsContentZoomSnap | undefined;
- "-ms-flex"?: _$csstype.Property.Flex<string | number> | undefined;
- "-ms-scroll-limit"?: _$csstype.Property.MsScrollLimit | undefined;
- "-ms-scroll-snap-x"?: _$csstype.Property.MsScrollSnapX | undefined;
- "-ms-scroll-snap-y"?: _$csstype.Property.MsScrollSnapY | undefined;
- "-ms-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "-webkit-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
- "-webkit-border-before"?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
- "-webkit-border-image"?: _$csstype.Property.BorderImage | undefined;
- "-webkit-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
- "-webkit-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
- "-webkit-columns"?: _$csstype.Property.Columns<string | number> | undefined;
- "-webkit-flex"?: _$csstype.Property.Flex<string | number> | undefined;
- "-webkit-flex-flow"?: _$csstype.Property.FlexFlow | undefined;
- "-webkit-mask"?: _$csstype.Property.WebkitMask<string | number> | undefined;
- "-webkit-mask-box-image"?: _$csstype.Property.MaskBorder | undefined;
- "-webkit-text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
- "-webkit-text-stroke"?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
- "-webkit-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "box-align"?: _$csstype.Property.BoxAlign | undefined;
- "box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
- "box-lines"?: _$csstype.Property.BoxLines | undefined;
- "box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "box-pack"?: _$csstype.Property.BoxPack | undefined;
- "font-stretch"?: _$csstype.Property.FontStretch | undefined;
- "grid-column-gap"?: _$csstype.Property.GridColumnGap<string | number> | undefined;
- "grid-gap"?: _$csstype.Property.GridGap<string | number> | undefined;
- "grid-row-gap"?: _$csstype.Property.GridRowGap<string | number> | undefined;
- "ime-mode"?: _$csstype.Property.ImeMode | undefined;
- "inset-area"?: _$csstype.Property.PositionArea | undefined;
- "offset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
- "offset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- "offset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- "offset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
- "offset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- "offset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- "page-break-after"?: _$csstype.Property.PageBreakAfter | undefined;
- "page-break-before"?: _$csstype.Property.PageBreakBefore | undefined;
- "page-break-inside"?: _$csstype.Property.PageBreakInside | undefined;
- "position-try-options"?: _$csstype.Property.PositionTryFallbacks | undefined;
- "scroll-snap-coordinate"?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
- "scroll-snap-destination"?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
- "scroll-snap-points-x"?: _$csstype.Property.ScrollSnapPointsX | undefined;
- "scroll-snap-points-y"?: _$csstype.Property.ScrollSnapPointsY | undefined;
- "scroll-snap-type-x"?: _$csstype.Property.ScrollSnapTypeX | undefined;
- "scroll-snap-type-y"?: _$csstype.Property.ScrollSnapTypeY | undefined;
- "-khtml-box-align"?: _$csstype.Property.BoxAlign | undefined;
- "-khtml-box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "-khtml-box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "-khtml-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
- "-khtml-box-lines"?: _$csstype.Property.BoxLines | undefined;
- "-khtml-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "-khtml-box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "-khtml-box-pack"?: _$csstype.Property.BoxPack | undefined;
- "-khtml-line-break"?: _$csstype.Property.LineBreak | undefined;
- "-khtml-opacity"?: _$csstype.Property.Opacity | undefined;
- "-khtml-user-select"?: _$csstype.Property.UserSelect | undefined;
- "-moz-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
- "-moz-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
- "-moz-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "-moz-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
- "-moz-border-radius-bottomleft"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- "-moz-border-radius-bottomright"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- "-moz-border-radius-topleft"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- "-moz-border-radius-topright"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- "-moz-box-align"?: _$csstype.Property.BoxAlign | undefined;
- "-moz-box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "-moz-box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "-moz-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "-moz-box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "-moz-box-pack"?: _$csstype.Property.BoxPack | undefined;
- "-moz-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
- "-moz-column-count"?: _$csstype.Property.ColumnCount | undefined;
- "-moz-column-fill"?: _$csstype.Property.ColumnFill | undefined;
- "-moz-float-edge"?: _$csstype.Property.MozFloatEdge | undefined;
- "-moz-force-broken-image-icon"?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
- "-moz-opacity"?: _$csstype.Property.Opacity | undefined;
- "-moz-outline"?: _$csstype.Property.Outline<string | number> | undefined;
- "-moz-outline-color"?: _$csstype.Property.OutlineColor | undefined;
- "-moz-outline-style"?: _$csstype.Property.OutlineStyle | undefined;
- "-moz-outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- "-moz-text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
- "-moz-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
- "-moz-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
- "-moz-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
- "-moz-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-moz-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-moz-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-moz-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-moz-user-focus"?: _$csstype.Property.MozUserFocus | undefined;
- "-moz-user-input"?: _$csstype.Property.MozUserInput | undefined;
- "-ms-ime-mode"?: _$csstype.Property.ImeMode | undefined;
- "-o-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
- "-o-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "-o-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "-o-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "-o-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "-o-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "-o-animation-name"?: _$csstype.Property.AnimationName | undefined;
- "-o-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "-o-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "-o-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "-o-border-image"?: _$csstype.Property.BorderImage | undefined;
- "-o-object-fit"?: _$csstype.Property.ObjectFit | undefined;
- "-o-object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- "-o-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
- "-o-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
- "-o-transform"?: _$csstype.Property.Transform | undefined;
- "-o-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-o-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "-o-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-o-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-o-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-o-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-webkit-box-align"?: _$csstype.Property.BoxAlign | undefined;
- "-webkit-box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "-webkit-box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "-webkit-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
- "-webkit-box-lines"?: _$csstype.Property.BoxLines | undefined;
- "-webkit-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "-webkit-box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "-webkit-box-pack"?: _$csstype.Property.BoxPack | undefined;
- "color-interpolation"?: _$csstype.Property.ColorInterpolation | undefined;
- "color-rendering"?: _$csstype.Property.ColorRendering | undefined;
- "glyph-orientation-vertical"?: _$csstype.Property.GlyphOrientationVertical | undefined;
- }, {
- [x: `--${string}`]: string | number | undefined;
- accentColor?: _$csstype.Property.AccentColor | undefined;
- alignContent?: _$csstype.Property.AlignContent | undefined;
- alignItems?: _$csstype.Property.AlignItems | undefined;
- alignSelf?: _$csstype.Property.AlignSelf | undefined;
- alignTracks?: _$csstype.Property.AlignTracks | undefined;
- alignmentBaseline?: _$csstype.Property.AlignmentBaseline | undefined;
- anchorName?: _$csstype.Property.AnchorName | undefined;
- anchorScope?: _$csstype.Property.AnchorScope | undefined;
- animationComposition?: _$csstype.Property.AnimationComposition | undefined;
- animationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- animationDirection?: _$csstype.Property.AnimationDirection | undefined;
- animationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- animationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- animationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- animationName?: _$csstype.Property.AnimationName | undefined;
- animationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- animationRangeEnd?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
- animationRangeStart?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
- animationTimeline?: _$csstype.Property.AnimationTimeline | undefined;
- animationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- appearance?: _$csstype.Property.Appearance | undefined;
- aspectRatio?: _$csstype.Property.AspectRatio | undefined;
- backdropFilter?: _$csstype.Property.BackdropFilter | undefined;
- backfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
- backgroundAttachment?: _$csstype.Property.BackgroundAttachment | undefined;
- backgroundBlendMode?: _$csstype.Property.BackgroundBlendMode | undefined;
- backgroundClip?: _$csstype.Property.BackgroundClip | undefined;
- backgroundColor?: _$csstype.Property.BackgroundColor | undefined;
- backgroundImage?: _$csstype.Property.BackgroundImage | undefined;
- backgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
- backgroundPositionX?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
- backgroundPositionY?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
- backgroundRepeat?: _$csstype.Property.BackgroundRepeat | undefined;
- backgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- baselineShift?: _$csstype.Property.BaselineShift<string | number> | undefined;
- blockSize?: _$csstype.Property.BlockSize<string | number> | undefined;
- borderBlockEndColor?: _$csstype.Property.BorderBlockEndColor | undefined;
- borderBlockEndStyle?: _$csstype.Property.BorderBlockEndStyle | undefined;
- borderBlockEndWidth?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
- borderBlockStartColor?: _$csstype.Property.BorderBlockStartColor | undefined;
- borderBlockStartStyle?: _$csstype.Property.BorderBlockStartStyle | undefined;
- borderBlockStartWidth?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
- borderBottomColor?: _$csstype.Property.BorderBottomColor | undefined;
- borderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- borderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- borderBottomStyle?: _$csstype.Property.BorderBottomStyle | undefined;
- borderBottomWidth?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
- borderCollapse?: _$csstype.Property.BorderCollapse | undefined;
- borderEndEndRadius?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
- borderEndStartRadius?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
- borderImageOutset?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
- borderImageRepeat?: _$csstype.Property.BorderImageRepeat | undefined;
- borderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
- borderImageSource?: _$csstype.Property.BorderImageSource | undefined;
- borderImageWidth?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
- borderInlineEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
- borderInlineEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
- borderInlineEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- borderInlineStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
- borderInlineStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
- borderInlineStartWidth?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
- borderLeftColor?: _$csstype.Property.BorderLeftColor | undefined;
- borderLeftStyle?: _$csstype.Property.BorderLeftStyle | undefined;
- borderLeftWidth?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
- borderRightColor?: _$csstype.Property.BorderRightColor | undefined;
- borderRightStyle?: _$csstype.Property.BorderRightStyle | undefined;
- borderRightWidth?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
- borderSpacing?: _$csstype.Property.BorderSpacing<string | number> | undefined;
- borderStartEndRadius?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
- borderStartStartRadius?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
- borderTopColor?: _$csstype.Property.BorderTopColor | undefined;
- borderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- borderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- borderTopStyle?: _$csstype.Property.BorderTopStyle | undefined;
- borderTopWidth?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
- bottom?: _$csstype.Property.Bottom<string | number> | undefined;
- boxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
- boxShadow?: _$csstype.Property.BoxShadow | undefined;
- boxSizing?: _$csstype.Property.BoxSizing | undefined;
- breakAfter?: _$csstype.Property.BreakAfter | undefined;
- breakBefore?: _$csstype.Property.BreakBefore | undefined;
- breakInside?: _$csstype.Property.BreakInside | undefined;
- captionSide?: _$csstype.Property.CaptionSide | undefined;
- caretColor?: _$csstype.Property.CaretColor | undefined;
- caretShape?: _$csstype.Property.CaretShape | undefined;
- clear?: _$csstype.Property.Clear | undefined;
- clipPath?: _$csstype.Property.ClipPath | undefined;
- clipRule?: _$csstype.Property.ClipRule | undefined;
- color?: _$csstype.Property.Color | undefined;
- colorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
- colorInterpolationFilters?: _$csstype.Property.ColorInterpolationFilters | undefined;
- colorScheme?: _$csstype.Property.ColorScheme | undefined;
- columnCount?: _$csstype.Property.ColumnCount | undefined;
- columnFill?: _$csstype.Property.ColumnFill | undefined;
- columnGap?: _$csstype.Property.ColumnGap<string | number> | undefined;
- columnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
- columnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
- columnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- columnSpan?: _$csstype.Property.ColumnSpan | undefined;
- columnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- contain?: _$csstype.Property.Contain | undefined;
- containIntrinsicBlockSize?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
- containIntrinsicHeight?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
- containIntrinsicInlineSize?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
- containIntrinsicWidth?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
- containerName?: _$csstype.Property.ContainerName | undefined;
- containerType?: _$csstype.Property.ContainerType | undefined;
- content?: _$csstype.Property.Content | undefined;
- contentVisibility?: _$csstype.Property.ContentVisibility | undefined;
- counterIncrement?: _$csstype.Property.CounterIncrement | undefined;
- counterReset?: _$csstype.Property.CounterReset | undefined;
- counterSet?: _$csstype.Property.CounterSet | undefined;
- cursor?: _$csstype.Property.Cursor | undefined;
- cx?: _$csstype.Property.Cx<string | number> | undefined;
- cy?: _$csstype.Property.Cy<string | number> | undefined;
- d?: _$csstype.Property.D | undefined;
- direction?: _$csstype.Property.Direction | undefined;
- display?: _$csstype.Property.Display | undefined;
- dominantBaseline?: _$csstype.Property.DominantBaseline | undefined;
- emptyCells?: _$csstype.Property.EmptyCells | undefined;
- fieldSizing?: _$csstype.Property.FieldSizing | undefined;
- fill?: _$csstype.Property.Fill | undefined;
- fillOpacity?: _$csstype.Property.FillOpacity | undefined;
- fillRule?: _$csstype.Property.FillRule | undefined;
- filter?: _$csstype.Property.Filter | undefined;
- flexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
- flexDirection?: _$csstype.Property.FlexDirection | undefined;
- flexGrow?: _$csstype.Property.FlexGrow | undefined;
- flexShrink?: _$csstype.Property.FlexShrink | undefined;
- flexWrap?: _$csstype.Property.FlexWrap | undefined;
- float?: _$csstype.Property.Float | undefined;
- floodColor?: _$csstype.Property.FloodColor | undefined;
- floodOpacity?: _$csstype.Property.FloodOpacity | undefined;
- fontFamily?: _$csstype.Property.FontFamily | undefined;
- fontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
- fontKerning?: _$csstype.Property.FontKerning | undefined;
- fontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
- fontOpticalSizing?: _$csstype.Property.FontOpticalSizing | undefined;
- fontPalette?: _$csstype.Property.FontPalette | undefined;
- fontSize?: _$csstype.Property.FontSize<string | number> | undefined;
- fontSizeAdjust?: _$csstype.Property.FontSizeAdjust | undefined;
- fontSmooth?: _$csstype.Property.FontSmooth<string | number> | undefined;
- fontStyle?: _$csstype.Property.FontStyle | undefined;
- fontSynthesis?: _$csstype.Property.FontSynthesis | undefined;
- fontSynthesisPosition?: _$csstype.Property.FontSynthesisPosition | undefined;
- fontSynthesisSmallCaps?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
- fontSynthesisStyle?: _$csstype.Property.FontSynthesisStyle | undefined;
- fontSynthesisWeight?: _$csstype.Property.FontSynthesisWeight | undefined;
- fontVariant?: _$csstype.Property.FontVariant | undefined;
- fontVariantAlternates?: _$csstype.Property.FontVariantAlternates | undefined;
- fontVariantCaps?: _$csstype.Property.FontVariantCaps | undefined;
- fontVariantEastAsian?: _$csstype.Property.FontVariantEastAsian | undefined;
- fontVariantEmoji?: _$csstype.Property.FontVariantEmoji | undefined;
- fontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
- fontVariantNumeric?: _$csstype.Property.FontVariantNumeric | undefined;
- fontVariantPosition?: _$csstype.Property.FontVariantPosition | undefined;
- fontVariationSettings?: _$csstype.Property.FontVariationSettings | undefined;
- fontWeight?: _$csstype.Property.FontWeight | undefined;
- fontWidth?: _$csstype.Property.FontWidth | undefined;
- forcedColorAdjust?: _$csstype.Property.ForcedColorAdjust | undefined;
- gridAutoColumns?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
- gridAutoFlow?: _$csstype.Property.GridAutoFlow | undefined;
- gridAutoRows?: _$csstype.Property.GridAutoRows<string | number> | undefined;
- gridColumnEnd?: _$csstype.Property.GridColumnEnd | undefined;
- gridColumnStart?: _$csstype.Property.GridColumnStart | undefined;
- gridRowEnd?: _$csstype.Property.GridRowEnd | undefined;
- gridRowStart?: _$csstype.Property.GridRowStart | undefined;
- gridTemplateAreas?: _$csstype.Property.GridTemplateAreas | undefined;
- gridTemplateColumns?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
- gridTemplateRows?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
- hangingPunctuation?: _$csstype.Property.HangingPunctuation | undefined;
- height?: _$csstype.Property.Height<string | number> | undefined;
- hyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
- hyphenateLimitChars?: _$csstype.Property.HyphenateLimitChars | undefined;
- hyphens?: _$csstype.Property.Hyphens | undefined;
- imageOrientation?: _$csstype.Property.ImageOrientation | undefined;
- imageRendering?: _$csstype.Property.ImageRendering | undefined;
- imageResolution?: _$csstype.Property.ImageResolution | undefined;
- initialLetter?: _$csstype.Property.InitialLetter | undefined;
- initialLetterAlign?: _$csstype.Property.InitialLetterAlign | undefined;
- inlineSize?: _$csstype.Property.InlineSize<string | number> | undefined;
- insetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- insetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- insetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- insetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- interpolateSize?: _$csstype.Property.InterpolateSize | undefined;
- isolation?: _$csstype.Property.Isolation | undefined;
- justifyContent?: _$csstype.Property.JustifyContent | undefined;
- justifyItems?: _$csstype.Property.JustifyItems | undefined;
- justifySelf?: _$csstype.Property.JustifySelf | undefined;
- justifyTracks?: _$csstype.Property.JustifyTracks | undefined;
- left?: _$csstype.Property.Left<string | number> | undefined;
- letterSpacing?: _$csstype.Property.LetterSpacing<string | number> | undefined;
- lightingColor?: _$csstype.Property.LightingColor | undefined;
- lineBreak?: _$csstype.Property.LineBreak | undefined;
- lineHeight?: _$csstype.Property.LineHeight<string | number> | undefined;
- lineHeightStep?: _$csstype.Property.LineHeightStep<string | number> | undefined;
- listStyleImage?: _$csstype.Property.ListStyleImage | undefined;
- listStylePosition?: _$csstype.Property.ListStylePosition | undefined;
- listStyleType?: _$csstype.Property.ListStyleType | undefined;
- marginBlockEnd?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
- marginBlockStart?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
- marginBottom?: _$csstype.Property.MarginBottom<string | number> | undefined;
- marginInlineEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- marginInlineStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- marginLeft?: _$csstype.Property.MarginLeft<string | number> | undefined;
- marginRight?: _$csstype.Property.MarginRight<string | number> | undefined;
- marginTop?: _$csstype.Property.MarginTop<string | number> | undefined;
- marginTrim?: _$csstype.Property.MarginTrim | undefined;
- marker?: _$csstype.Property.Marker | undefined;
- markerEnd?: _$csstype.Property.MarkerEnd | undefined;
- markerMid?: _$csstype.Property.MarkerMid | undefined;
- markerStart?: _$csstype.Property.MarkerStart | undefined;
- maskBorderMode?: _$csstype.Property.MaskBorderMode | undefined;
- maskBorderOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- maskBorderRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
- maskBorderSlice?: _$csstype.Property.MaskBorderSlice | undefined;
- maskBorderSource?: _$csstype.Property.MaskBorderSource | undefined;
- maskBorderWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- maskClip?: _$csstype.Property.MaskClip | undefined;
- maskComposite?: _$csstype.Property.MaskComposite | undefined;
- maskImage?: _$csstype.Property.MaskImage | undefined;
- maskMode?: _$csstype.Property.MaskMode | undefined;
- maskOrigin?: _$csstype.Property.MaskOrigin | undefined;
- maskPosition?: _$csstype.Property.MaskPosition<string | number> | undefined;
- maskRepeat?: _$csstype.Property.MaskRepeat | undefined;
- maskSize?: _$csstype.Property.MaskSize<string | number> | undefined;
- maskType?: _$csstype.Property.MaskType | undefined;
- masonryAutoFlow?: _$csstype.Property.MasonryAutoFlow | undefined;
- mathDepth?: _$csstype.Property.MathDepth | undefined;
- mathShift?: _$csstype.Property.MathShift | undefined;
- mathStyle?: _$csstype.Property.MathStyle | undefined;
- maxBlockSize?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
- maxHeight?: _$csstype.Property.MaxHeight<string | number> | undefined;
- maxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- maxLines?: _$csstype.Property.MaxLines | undefined;
- maxWidth?: _$csstype.Property.MaxWidth<string | number> | undefined;
- minBlockSize?: _$csstype.Property.MinBlockSize<string | number> | undefined;
- minHeight?: _$csstype.Property.MinHeight<string | number> | undefined;
- minInlineSize?: _$csstype.Property.MinInlineSize<string | number> | undefined;
- minWidth?: _$csstype.Property.MinWidth<string | number> | undefined;
- mixBlendMode?: _$csstype.Property.MixBlendMode | undefined;
- motionDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- motionPath?: _$csstype.Property.OffsetPath | undefined;
- motionRotation?: _$csstype.Property.OffsetRotate | undefined;
- objectFit?: _$csstype.Property.ObjectFit | undefined;
- objectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- objectViewBox?: _$csstype.Property.ObjectViewBox | undefined;
- offsetAnchor?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
- offsetDistance?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- offsetPath?: _$csstype.Property.OffsetPath | undefined;
- offsetPosition?: _$csstype.Property.OffsetPosition<string | number> | undefined;
- offsetRotate?: _$csstype.Property.OffsetRotate | undefined;
- offsetRotation?: _$csstype.Property.OffsetRotate | undefined;
- opacity?: _$csstype.Property.Opacity | undefined;
- order?: _$csstype.Property.Order | undefined;
- orphans?: _$csstype.Property.Orphans | undefined;
- outlineColor?: _$csstype.Property.OutlineColor | undefined;
- outlineOffset?: _$csstype.Property.OutlineOffset<string | number> | undefined;
- outlineStyle?: _$csstype.Property.OutlineStyle | undefined;
- outlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- overflowAnchor?: _$csstype.Property.OverflowAnchor | undefined;
- overflowBlock?: _$csstype.Property.OverflowBlock | undefined;
- overflowClipBox?: _$csstype.Property.OverflowClipBox | undefined;
- overflowClipMargin?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
- overflowInline?: _$csstype.Property.OverflowInline | undefined;
- overflowWrap?: _$csstype.Property.OverflowWrap | undefined;
- overflowX?: _$csstype.Property.OverflowX | undefined;
- overflowY?: _$csstype.Property.OverflowY | undefined;
- overlay?: _$csstype.Property.Overlay | undefined;
- overscrollBehaviorBlock?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
- overscrollBehaviorInline?: _$csstype.Property.OverscrollBehaviorInline | undefined;
- overscrollBehaviorX?: _$csstype.Property.OverscrollBehaviorX | undefined;
- overscrollBehaviorY?: _$csstype.Property.OverscrollBehaviorY | undefined;
- paddingBlockEnd?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
- paddingBlockStart?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
- paddingBottom?: _$csstype.Property.PaddingBottom<string | number> | undefined;
- paddingInlineEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- paddingInlineStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- paddingLeft?: _$csstype.Property.PaddingLeft<string | number> | undefined;
- paddingRight?: _$csstype.Property.PaddingRight<string | number> | undefined;
- paddingTop?: _$csstype.Property.PaddingTop<string | number> | undefined;
- page?: _$csstype.Property.Page | undefined;
- paintOrder?: _$csstype.Property.PaintOrder | undefined;
- perspective?: _$csstype.Property.Perspective<string | number> | undefined;
- perspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- pointerEvents?: _$csstype.Property.PointerEvents | undefined;
- position?: _$csstype.Property.Position | undefined;
- positionAnchor?: _$csstype.Property.PositionAnchor | undefined;
- positionArea?: _$csstype.Property.PositionArea | undefined;
- positionTryFallbacks?: _$csstype.Property.PositionTryFallbacks | undefined;
- positionTryOrder?: _$csstype.Property.PositionTryOrder | undefined;
- positionVisibility?: _$csstype.Property.PositionVisibility | undefined;
- printColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
- quotes?: _$csstype.Property.Quotes | undefined;
- r?: _$csstype.Property.R<string | number> | undefined;
- resize?: _$csstype.Property.Resize | undefined;
- right?: _$csstype.Property.Right<string | number> | undefined;
- rotate?: _$csstype.Property.Rotate | undefined;
- rowGap?: _$csstype.Property.RowGap<string | number> | undefined;
- rubyAlign?: _$csstype.Property.RubyAlign | undefined;
- rubyMerge?: _$csstype.Property.RubyMerge | undefined;
- rubyOverhang?: _$csstype.Property.RubyOverhang | undefined;
- rubyPosition?: _$csstype.Property.RubyPosition | undefined;
- rx?: _$csstype.Property.Rx<string | number> | undefined;
- ry?: _$csstype.Property.Ry<string | number> | undefined;
- scale?: _$csstype.Property.Scale | undefined;
- scrollBehavior?: _$csstype.Property.ScrollBehavior | undefined;
- scrollInitialTarget?: _$csstype.Property.ScrollInitialTarget | undefined;
- scrollMarginBlockEnd?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
- scrollMarginBlockStart?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
- scrollMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- scrollMarginInlineEnd?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
- scrollMarginInlineStart?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
- scrollMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- scrollMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- scrollMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- scrollPaddingBlockEnd?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
- scrollPaddingBlockStart?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
- scrollPaddingBottom?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
- scrollPaddingInlineEnd?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
- scrollPaddingInlineStart?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
- scrollPaddingLeft?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
- scrollPaddingRight?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
- scrollPaddingTop?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
- scrollSnapAlign?: _$csstype.Property.ScrollSnapAlign | undefined;
- scrollSnapMarginBottom?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- scrollSnapMarginLeft?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- scrollSnapMarginRight?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- scrollSnapMarginTop?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- scrollSnapStop?: _$csstype.Property.ScrollSnapStop | undefined;
- scrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
- scrollTimelineAxis?: _$csstype.Property.ScrollTimelineAxis | undefined;
- scrollTimelineName?: _$csstype.Property.ScrollTimelineName | undefined;
- scrollbarColor?: _$csstype.Property.ScrollbarColor | undefined;
- scrollbarGutter?: _$csstype.Property.ScrollbarGutter | undefined;
- scrollbarWidth?: _$csstype.Property.ScrollbarWidth | undefined;
- shapeImageThreshold?: _$csstype.Property.ShapeImageThreshold | undefined;
- shapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- shapeOutside?: _$csstype.Property.ShapeOutside | undefined;
- shapeRendering?: _$csstype.Property.ShapeRendering | undefined;
- speakAs?: _$csstype.Property.SpeakAs | undefined;
- stopColor?: _$csstype.Property.StopColor | undefined;
- stopOpacity?: _$csstype.Property.StopOpacity | undefined;
- stroke?: _$csstype.Property.Stroke | undefined;
- strokeColor?: _$csstype.Property.StrokeColor | undefined;
- strokeDasharray?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
- strokeDashoffset?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
- strokeLinecap?: _$csstype.Property.StrokeLinecap | undefined;
- strokeLinejoin?: _$csstype.Property.StrokeLinejoin | undefined;
- strokeMiterlimit?: _$csstype.Property.StrokeMiterlimit | undefined;
- strokeOpacity?: _$csstype.Property.StrokeOpacity | undefined;
- strokeWidth?: _$csstype.Property.StrokeWidth<string | number> | undefined;
- tabSize?: _$csstype.Property.TabSize<string | number> | undefined;
- tableLayout?: _$csstype.Property.TableLayout | undefined;
- textAlign?: _$csstype.Property.TextAlign | undefined;
- textAlignLast?: _$csstype.Property.TextAlignLast | undefined;
- textAnchor?: _$csstype.Property.TextAnchor | undefined;
- textAutospace?: _$csstype.Property.TextAutospace | undefined;
- textBox?: _$csstype.Property.TextBox | undefined;
- textBoxEdge?: _$csstype.Property.TextBoxEdge | undefined;
- textBoxTrim?: _$csstype.Property.TextBoxTrim | undefined;
- textCombineUpright?: _$csstype.Property.TextCombineUpright | undefined;
- textDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
- textDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
- textDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
- textDecorationSkipInk?: _$csstype.Property.TextDecorationSkipInk | undefined;
- textDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
- textDecorationThickness?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
- textEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
- textEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
- textEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
- textIndent?: _$csstype.Property.TextIndent<string | number> | undefined;
- textJustify?: _$csstype.Property.TextJustify | undefined;
- textOrientation?: _$csstype.Property.TextOrientation | undefined;
- textOverflow?: _$csstype.Property.TextOverflow | undefined;
- textRendering?: _$csstype.Property.TextRendering | undefined;
- textShadow?: _$csstype.Property.TextShadow | undefined;
- textSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
- textSpacingTrim?: _$csstype.Property.TextSpacingTrim | undefined;
- textTransform?: _$csstype.Property.TextTransform | undefined;
- textUnderlineOffset?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
- textUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
- textWrapMode?: _$csstype.Property.TextWrapMode | undefined;
- textWrapStyle?: _$csstype.Property.TextWrapStyle | undefined;
- timelineScope?: _$csstype.Property.TimelineScope | undefined;
- top?: _$csstype.Property.Top<string | number> | undefined;
- touchAction?: _$csstype.Property.TouchAction | undefined;
- transform?: _$csstype.Property.Transform | undefined;
- transformBox?: _$csstype.Property.TransformBox | undefined;
- transformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- transformStyle?: _$csstype.Property.TransformStyle | undefined;
- transitionBehavior?: _$csstype.Property.TransitionBehavior | undefined;
- transitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- transitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- transitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- transitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- translate?: _$csstype.Property.Translate<string | number> | undefined;
- unicodeBidi?: _$csstype.Property.UnicodeBidi | undefined;
- userSelect?: _$csstype.Property.UserSelect | undefined;
- vectorEffect?: _$csstype.Property.VectorEffect | undefined;
- verticalAlign?: _$csstype.Property.VerticalAlign<string | number> | undefined;
- viewTimelineAxis?: _$csstype.Property.ViewTimelineAxis | undefined;
- viewTimelineInset?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
- viewTimelineName?: _$csstype.Property.ViewTimelineName | undefined;
- viewTransitionClass?: _$csstype.Property.ViewTransitionClass | undefined;
- viewTransitionName?: _$csstype.Property.ViewTransitionName | undefined;
- visibility?: _$csstype.Property.Visibility | undefined;
- whiteSpace?: _$csstype.Property.WhiteSpace | undefined;
- whiteSpaceCollapse?: _$csstype.Property.WhiteSpaceCollapse | undefined;
- widows?: _$csstype.Property.Widows | undefined;
- width?: _$csstype.Property.Width<string | number> | undefined;
- willChange?: _$csstype.Property.WillChange | undefined;
- wordBreak?: _$csstype.Property.WordBreak | undefined;
- wordSpacing?: _$csstype.Property.WordSpacing<string | number> | undefined;
- wordWrap?: _$csstype.Property.WordWrap | undefined;
- writingMode?: _$csstype.Property.WritingMode | undefined;
- x?: _$csstype.Property.X<string | number> | undefined;
- y?: _$csstype.Property.Y<string | number> | undefined;
- zIndex?: _$csstype.Property.ZIndex | undefined;
- zoom?: _$csstype.Property.Zoom | undefined;
- all?: _$csstype.Globals | undefined;
- animation?: _$csstype.Property.Animation<string & {}> | undefined;
- animationRange?: _$csstype.Property.AnimationRange<string | number> | undefined;
- background?: _$csstype.Property.Background<string | number> | undefined;
- backgroundPosition?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
- border?: _$csstype.Property.Border<string | number> | undefined;
- borderBlock?: _$csstype.Property.BorderBlock<string | number> | undefined;
- borderBlockColor?: _$csstype.Property.BorderBlockColor | undefined;
- borderBlockEnd?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
- borderBlockStart?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
- borderBlockStyle?: _$csstype.Property.BorderBlockStyle | undefined;
- borderBlockWidth?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
- borderBottom?: _$csstype.Property.BorderBottom<string | number> | undefined;
- borderColor?: _$csstype.Property.BorderColor | undefined;
- borderImage?: _$csstype.Property.BorderImage | undefined;
- borderInline?: _$csstype.Property.BorderInline<string | number> | undefined;
- borderInlineColor?: _$csstype.Property.BorderInlineColor | undefined;
- borderInlineEnd?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
- borderInlineStart?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
- borderInlineStyle?: _$csstype.Property.BorderInlineStyle | undefined;
- borderInlineWidth?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
- borderLeft?: _$csstype.Property.BorderLeft<string | number> | undefined;
- borderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
- borderRight?: _$csstype.Property.BorderRight<string | number> | undefined;
- borderStyle?: _$csstype.Property.BorderStyle | undefined;
- borderTop?: _$csstype.Property.BorderTop<string | number> | undefined;
- borderWidth?: _$csstype.Property.BorderWidth<string | number> | undefined;
- caret?: _$csstype.Property.Caret | undefined;
- columnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
- columns?: _$csstype.Property.Columns<string | number> | undefined;
- containIntrinsicSize?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
- container?: _$csstype.Property.Container | undefined;
- flex?: _$csstype.Property.Flex<string | number> | undefined;
- flexFlow?: _$csstype.Property.FlexFlow | undefined;
- font?: _$csstype.Property.Font | undefined;
- gap?: _$csstype.Property.Gap<string | number> | undefined;
- grid?: _$csstype.Property.Grid | undefined;
- gridArea?: _$csstype.Property.GridArea | undefined;
- gridColumn?: _$csstype.Property.GridColumn | undefined;
- gridRow?: _$csstype.Property.GridRow | undefined;
- gridTemplate?: _$csstype.Property.GridTemplate | undefined;
- inset?: _$csstype.Property.Inset<string | number> | undefined;
- insetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
- insetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
- lineClamp?: _$csstype.Property.LineClamp | undefined;
- listStyle?: _$csstype.Property.ListStyle | undefined;
- margin?: _$csstype.Property.Margin<string | number> | undefined;
- marginBlock?: _$csstype.Property.MarginBlock<string | number> | undefined;
- marginInline?: _$csstype.Property.MarginInline<string | number> | undefined;
- mask?: _$csstype.Property.Mask<string | number> | undefined;
- maskBorder?: _$csstype.Property.MaskBorder | undefined;
- motion?: _$csstype.Property.Offset<string | number> | undefined;
- offset?: _$csstype.Property.Offset<string | number> | undefined;
- outline?: _$csstype.Property.Outline<string | number> | undefined;
- overflow?: _$csstype.Property.Overflow | undefined;
- overscrollBehavior?: _$csstype.Property.OverscrollBehavior | undefined;
- padding?: _$csstype.Property.Padding<string | number> | undefined;
- paddingBlock?: _$csstype.Property.PaddingBlock<string | number> | undefined;
- paddingInline?: _$csstype.Property.PaddingInline<string | number> | undefined;
- placeContent?: _$csstype.Property.PlaceContent | undefined;
- placeItems?: _$csstype.Property.PlaceItems | undefined;
- placeSelf?: _$csstype.Property.PlaceSelf | undefined;
- positionTry?: _$csstype.Property.PositionTry | undefined;
- scrollMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- scrollMarginBlock?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
- scrollMarginInline?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
- scrollPadding?: _$csstype.Property.ScrollPadding<string | number> | undefined;
- scrollPaddingBlock?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
- scrollPaddingInline?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
- scrollSnapMargin?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- scrollTimeline?: _$csstype.Property.ScrollTimeline | undefined;
- textDecoration?: _$csstype.Property.TextDecoration<string | number> | undefined;
- textEmphasis?: _$csstype.Property.TextEmphasis | undefined;
- textWrap?: _$csstype.Property.TextWrap | undefined;
- transition?: _$csstype.Property.Transition<string & {}> | undefined;
- viewTimeline?: _$csstype.Property.ViewTimeline | undefined;
- MozAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- MozAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
- MozAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- MozAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- MozAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- MozAnimationName?: _$csstype.Property.AnimationName | undefined;
- MozAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- MozAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- MozAppearance?: _$csstype.Property.MozAppearance | undefined;
- MozBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
- MozBinding?: _$csstype.Property.MozBinding | undefined;
- MozBorderBottomColors?: _$csstype.Property.MozBorderBottomColors | undefined;
- MozBorderEndColor?: _$csstype.Property.BorderInlineEndColor | undefined;
- MozBorderEndStyle?: _$csstype.Property.BorderInlineEndStyle | undefined;
- MozBorderEndWidth?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- MozBorderLeftColors?: _$csstype.Property.MozBorderLeftColors | undefined;
- MozBorderRightColors?: _$csstype.Property.MozBorderRightColors | undefined;
- MozBorderStartColor?: _$csstype.Property.BorderInlineStartColor | undefined;
- MozBorderStartStyle?: _$csstype.Property.BorderInlineStartStyle | undefined;
- MozBorderTopColors?: _$csstype.Property.MozBorderTopColors | undefined;
- MozBoxSizing?: _$csstype.Property.BoxSizing | undefined;
- MozColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
- MozColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
- MozColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- MozColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- MozContextProperties?: _$csstype.Property.MozContextProperties | undefined;
- MozFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
- MozFontLanguageOverride?: _$csstype.Property.FontLanguageOverride | undefined;
- MozHyphens?: _$csstype.Property.Hyphens | undefined;
- MozMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- MozMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- MozOrient?: _$csstype.Property.MozOrient | undefined;
- MozOsxFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
- MozOutlineRadiusBottomleft?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
- MozOutlineRadiusBottomright?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
- MozOutlineRadiusTopleft?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
- MozOutlineRadiusTopright?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
- MozPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- MozPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- MozPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
- MozPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- MozStackSizing?: _$csstype.Property.MozStackSizing | undefined;
- MozTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
- MozTextBlink?: _$csstype.Property.MozTextBlink | undefined;
- MozTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
- MozTransform?: _$csstype.Property.Transform | undefined;
- MozTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- MozTransformStyle?: _$csstype.Property.TransformStyle | undefined;
- MozUserModify?: _$csstype.Property.MozUserModify | undefined;
- MozUserSelect?: _$csstype.Property.UserSelect | undefined;
- MozWindowDragging?: _$csstype.Property.MozWindowDragging | undefined;
- MozWindowShadow?: _$csstype.Property.MozWindowShadow | undefined;
- msAccelerator?: _$csstype.Property.MsAccelerator | undefined;
- msBlockProgression?: _$csstype.Property.MsBlockProgression | undefined;
- msContentZoomChaining?: _$csstype.Property.MsContentZoomChaining | undefined;
- msContentZoomLimitMax?: _$csstype.Property.MsContentZoomLimitMax | undefined;
- msContentZoomLimitMin?: _$csstype.Property.MsContentZoomLimitMin | undefined;
- msContentZoomSnapPoints?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
- msContentZoomSnapType?: _$csstype.Property.MsContentZoomSnapType | undefined;
- msContentZooming?: _$csstype.Property.MsContentZooming | undefined;
- msFilter?: _$csstype.Property.MsFilter | undefined;
- msFlexDirection?: _$csstype.Property.FlexDirection | undefined;
- msFlexPositive?: _$csstype.Property.FlexGrow | undefined;
- msFlowFrom?: _$csstype.Property.MsFlowFrom | undefined;
- msFlowInto?: _$csstype.Property.MsFlowInto | undefined;
- msGridColumns?: _$csstype.Property.MsGridColumns<string | number> | undefined;
- msGridRows?: _$csstype.Property.MsGridRows<string | number> | undefined;
- msHighContrastAdjust?: _$csstype.Property.MsHighContrastAdjust | undefined;
- msHyphenateLimitChars?: _$csstype.Property.MsHyphenateLimitChars | undefined;
- msHyphenateLimitLines?: _$csstype.Property.MsHyphenateLimitLines | undefined;
- msHyphenateLimitZone?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
- msHyphens?: _$csstype.Property.Hyphens | undefined;
- msImeAlign?: _$csstype.Property.MsImeAlign | undefined;
- msLineBreak?: _$csstype.Property.LineBreak | undefined;
- msOrder?: _$csstype.Property.Order | undefined;
- msOverflowStyle?: _$csstype.Property.MsOverflowStyle | undefined;
- msOverflowX?: _$csstype.Property.OverflowX | undefined;
- msOverflowY?: _$csstype.Property.OverflowY | undefined;
- msScrollChaining?: _$csstype.Property.MsScrollChaining | undefined;
- msScrollLimitXMax?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
- msScrollLimitXMin?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
- msScrollLimitYMax?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
- msScrollLimitYMin?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
- msScrollRails?: _$csstype.Property.MsScrollRails | undefined;
- msScrollSnapPointsX?: _$csstype.Property.MsScrollSnapPointsX | undefined;
- msScrollSnapPointsY?: _$csstype.Property.MsScrollSnapPointsY | undefined;
- msScrollSnapType?: _$csstype.Property.MsScrollSnapType | undefined;
- msScrollTranslation?: _$csstype.Property.MsScrollTranslation | undefined;
- msScrollbar3dlightColor?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
- msScrollbarArrowColor?: _$csstype.Property.MsScrollbarArrowColor | undefined;
- msScrollbarBaseColor?: _$csstype.Property.MsScrollbarBaseColor | undefined;
- msScrollbarDarkshadowColor?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
- msScrollbarFaceColor?: _$csstype.Property.MsScrollbarFaceColor | undefined;
- msScrollbarHighlightColor?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
- msScrollbarShadowColor?: _$csstype.Property.MsScrollbarShadowColor | undefined;
- msScrollbarTrackColor?: _$csstype.Property.MsScrollbarTrackColor | undefined;
- msTextAutospace?: _$csstype.Property.MsTextAutospace | undefined;
- msTextCombineHorizontal?: _$csstype.Property.TextCombineUpright | undefined;
- msTextOverflow?: _$csstype.Property.TextOverflow | undefined;
- msTouchAction?: _$csstype.Property.TouchAction | undefined;
- msTouchSelect?: _$csstype.Property.MsTouchSelect | undefined;
- msTransform?: _$csstype.Property.Transform | undefined;
- msTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- msTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- msTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- msTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- msTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- msUserSelect?: _$csstype.Property.MsUserSelect | undefined;
- msWordBreak?: _$csstype.Property.WordBreak | undefined;
- msWrapFlow?: _$csstype.Property.MsWrapFlow | undefined;
- msWrapMargin?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
- msWrapThrough?: _$csstype.Property.MsWrapThrough | undefined;
- msWritingMode?: _$csstype.Property.WritingMode | undefined;
- WebkitAlignContent?: _$csstype.Property.AlignContent | undefined;
- WebkitAlignItems?: _$csstype.Property.AlignItems | undefined;
- WebkitAlignSelf?: _$csstype.Property.AlignSelf | undefined;
- WebkitAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- WebkitAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
- WebkitAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- WebkitAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- WebkitAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- WebkitAnimationName?: _$csstype.Property.AnimationName | undefined;
- WebkitAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- WebkitAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- WebkitAppearance?: _$csstype.Property.WebkitAppearance | undefined;
- WebkitBackdropFilter?: _$csstype.Property.BackdropFilter | undefined;
- WebkitBackfaceVisibility?: _$csstype.Property.BackfaceVisibility | undefined;
- WebkitBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
- WebkitBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
- WebkitBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- WebkitBorderBeforeColor?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
- WebkitBorderBeforeStyle?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
- WebkitBorderBeforeWidth?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
- WebkitBorderBottomLeftRadius?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- WebkitBorderBottomRightRadius?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- WebkitBorderImageSlice?: _$csstype.Property.BorderImageSlice | undefined;
- WebkitBorderTopLeftRadius?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- WebkitBorderTopRightRadius?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- WebkitBoxDecorationBreak?: _$csstype.Property.BoxDecorationBreak | undefined;
- WebkitBoxReflect?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
- WebkitBoxShadow?: _$csstype.Property.BoxShadow | undefined;
- WebkitBoxSizing?: _$csstype.Property.BoxSizing | undefined;
- WebkitClipPath?: _$csstype.Property.ClipPath | undefined;
- WebkitColumnCount?: _$csstype.Property.ColumnCount | undefined;
- WebkitColumnFill?: _$csstype.Property.ColumnFill | undefined;
- WebkitColumnRuleColor?: _$csstype.Property.ColumnRuleColor | undefined;
- WebkitColumnRuleStyle?: _$csstype.Property.ColumnRuleStyle | undefined;
- WebkitColumnRuleWidth?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- WebkitColumnSpan?: _$csstype.Property.ColumnSpan | undefined;
- WebkitColumnWidth?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- WebkitFilter?: _$csstype.Property.Filter | undefined;
- WebkitFlexBasis?: _$csstype.Property.FlexBasis<string | number> | undefined;
- WebkitFlexDirection?: _$csstype.Property.FlexDirection | undefined;
- WebkitFlexGrow?: _$csstype.Property.FlexGrow | undefined;
- WebkitFlexShrink?: _$csstype.Property.FlexShrink | undefined;
- WebkitFlexWrap?: _$csstype.Property.FlexWrap | undefined;
- WebkitFontFeatureSettings?: _$csstype.Property.FontFeatureSettings | undefined;
- WebkitFontKerning?: _$csstype.Property.FontKerning | undefined;
- WebkitFontSmoothing?: _$csstype.Property.FontSmooth<string | number> | undefined;
- WebkitFontVariantLigatures?: _$csstype.Property.FontVariantLigatures | undefined;
- WebkitHyphenateCharacter?: _$csstype.Property.HyphenateCharacter | undefined;
- WebkitHyphens?: _$csstype.Property.Hyphens | undefined;
- WebkitInitialLetter?: _$csstype.Property.InitialLetter | undefined;
- WebkitJustifyContent?: _$csstype.Property.JustifyContent | undefined;
- WebkitLineBreak?: _$csstype.Property.LineBreak | undefined;
- WebkitLineClamp?: _$csstype.Property.WebkitLineClamp | undefined;
- WebkitLogicalHeight?: _$csstype.Property.BlockSize<string | number> | undefined;
- WebkitLogicalWidth?: _$csstype.Property.InlineSize<string | number> | undefined;
- WebkitMarginEnd?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- WebkitMarginStart?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- WebkitMaskAttachment?: _$csstype.Property.WebkitMaskAttachment | undefined;
- WebkitMaskBoxImageOutset?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- WebkitMaskBoxImageRepeat?: _$csstype.Property.MaskBorderRepeat | undefined;
- WebkitMaskBoxImageSlice?: _$csstype.Property.MaskBorderSlice | undefined;
- WebkitMaskBoxImageSource?: _$csstype.Property.MaskBorderSource | undefined;
- WebkitMaskBoxImageWidth?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- WebkitMaskClip?: _$csstype.Property.WebkitMaskClip | undefined;
- WebkitMaskComposite?: _$csstype.Property.WebkitMaskComposite | undefined;
- WebkitMaskImage?: _$csstype.Property.WebkitMaskImage | undefined;
- WebkitMaskOrigin?: _$csstype.Property.WebkitMaskOrigin | undefined;
- WebkitMaskPosition?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
- WebkitMaskPositionX?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
- WebkitMaskPositionY?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
- WebkitMaskRepeat?: _$csstype.Property.WebkitMaskRepeat | undefined;
- WebkitMaskRepeatX?: _$csstype.Property.WebkitMaskRepeatX | undefined;
- WebkitMaskRepeatY?: _$csstype.Property.WebkitMaskRepeatY | undefined;
- WebkitMaskSize?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
- WebkitMaxInlineSize?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- WebkitOrder?: _$csstype.Property.Order | undefined;
- WebkitOverflowScrolling?: _$csstype.Property.WebkitOverflowScrolling | undefined;
- WebkitPaddingEnd?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- WebkitPaddingStart?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- WebkitPerspective?: _$csstype.Property.Perspective<string | number> | undefined;
- WebkitPerspectiveOrigin?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- WebkitPrintColorAdjust?: _$csstype.Property.PrintColorAdjust | undefined;
- WebkitRubyPosition?: _$csstype.Property.RubyPosition | undefined;
- WebkitScrollSnapType?: _$csstype.Property.ScrollSnapType | undefined;
- WebkitShapeMargin?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- WebkitTapHighlightColor?: _$csstype.Property.WebkitTapHighlightColor | undefined;
- WebkitTextCombine?: _$csstype.Property.TextCombineUpright | undefined;
- WebkitTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
- WebkitTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
- WebkitTextDecorationSkip?: _$csstype.Property.TextDecorationSkip | undefined;
- WebkitTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
- WebkitTextEmphasisColor?: _$csstype.Property.TextEmphasisColor | undefined;
- WebkitTextEmphasisPosition?: _$csstype.Property.TextEmphasisPosition | undefined;
- WebkitTextEmphasisStyle?: _$csstype.Property.TextEmphasisStyle | undefined;
- WebkitTextFillColor?: _$csstype.Property.WebkitTextFillColor | undefined;
- WebkitTextOrientation?: _$csstype.Property.TextOrientation | undefined;
- WebkitTextSizeAdjust?: _$csstype.Property.TextSizeAdjust | undefined;
- WebkitTextStrokeColor?: _$csstype.Property.WebkitTextStrokeColor | undefined;
- WebkitTextStrokeWidth?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
- WebkitTextUnderlinePosition?: _$csstype.Property.TextUnderlinePosition | undefined;
- WebkitTouchCallout?: _$csstype.Property.WebkitTouchCallout | undefined;
- WebkitTransform?: _$csstype.Property.Transform | undefined;
- WebkitTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- WebkitTransformStyle?: _$csstype.Property.TransformStyle | undefined;
- WebkitTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- WebkitTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- WebkitTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- WebkitTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- WebkitUserModify?: _$csstype.Property.WebkitUserModify | undefined;
- WebkitUserSelect?: _$csstype.Property.WebkitUserSelect | undefined;
- WebkitWritingMode?: _$csstype.Property.WritingMode | undefined;
- MozAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
- MozBorderImage?: _$csstype.Property.BorderImage | undefined;
- MozColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
- MozColumns?: _$csstype.Property.Columns<string | number> | undefined;
- MozOutlineRadius?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
- MozTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- msContentZoomLimit?: _$csstype.Property.MsContentZoomLimit | undefined;
- msContentZoomSnap?: _$csstype.Property.MsContentZoomSnap | undefined;
- msFlex?: _$csstype.Property.Flex<string | number> | undefined;
- msScrollLimit?: _$csstype.Property.MsScrollLimit | undefined;
- msScrollSnapX?: _$csstype.Property.MsScrollSnapX | undefined;
- msScrollSnapY?: _$csstype.Property.MsScrollSnapY | undefined;
- msTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- WebkitAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
- WebkitBorderBefore?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
- WebkitBorderImage?: _$csstype.Property.BorderImage | undefined;
- WebkitBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
- WebkitColumnRule?: _$csstype.Property.ColumnRule<string | number> | undefined;
- WebkitColumns?: _$csstype.Property.Columns<string | number> | undefined;
- WebkitFlex?: _$csstype.Property.Flex<string | number> | undefined;
- WebkitFlexFlow?: _$csstype.Property.FlexFlow | undefined;
- WebkitMask?: _$csstype.Property.WebkitMask<string | number> | undefined;
- WebkitMaskBoxImage?: _$csstype.Property.MaskBorder | undefined;
- WebkitTextEmphasis?: _$csstype.Property.TextEmphasis | undefined;
- WebkitTextStroke?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
- WebkitTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- boxAlign?: _$csstype.Property.BoxAlign | undefined;
- boxDirection?: _$csstype.Property.BoxDirection | undefined;
- boxFlex?: _$csstype.Property.BoxFlex | undefined;
- boxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
- boxLines?: _$csstype.Property.BoxLines | undefined;
- boxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- boxOrient?: _$csstype.Property.BoxOrient | undefined;
- boxPack?: _$csstype.Property.BoxPack | undefined;
- clip?: _$csstype.Property.Clip | undefined;
- fontStretch?: _$csstype.Property.FontStretch | undefined;
- gridColumnGap?: _$csstype.Property.GridColumnGap<string | number> | undefined;
- gridGap?: _$csstype.Property.GridGap<string | number> | undefined;
- gridRowGap?: _$csstype.Property.GridRowGap<string | number> | undefined;
- imeMode?: _$csstype.Property.ImeMode | undefined;
- insetArea?: _$csstype.Property.PositionArea | undefined;
- offsetBlock?: _$csstype.Property.InsetBlock<string | number> | undefined;
- offsetBlockEnd?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- offsetBlockStart?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- offsetInline?: _$csstype.Property.InsetInline<string | number> | undefined;
- offsetInlineEnd?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- offsetInlineStart?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- pageBreakAfter?: _$csstype.Property.PageBreakAfter | undefined;
- pageBreakBefore?: _$csstype.Property.PageBreakBefore | undefined;
- pageBreakInside?: _$csstype.Property.PageBreakInside | undefined;
- positionTryOptions?: _$csstype.Property.PositionTryFallbacks | undefined;
- scrollSnapCoordinate?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
- scrollSnapDestination?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
- scrollSnapPointsX?: _$csstype.Property.ScrollSnapPointsX | undefined;
- scrollSnapPointsY?: _$csstype.Property.ScrollSnapPointsY | undefined;
- scrollSnapTypeX?: _$csstype.Property.ScrollSnapTypeX | undefined;
- scrollSnapTypeY?: _$csstype.Property.ScrollSnapTypeY | undefined;
- KhtmlBoxAlign?: _$csstype.Property.BoxAlign | undefined;
- KhtmlBoxDirection?: _$csstype.Property.BoxDirection | undefined;
- KhtmlBoxFlex?: _$csstype.Property.BoxFlex | undefined;
- KhtmlBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
- KhtmlBoxLines?: _$csstype.Property.BoxLines | undefined;
- KhtmlBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- KhtmlBoxOrient?: _$csstype.Property.BoxOrient | undefined;
- KhtmlBoxPack?: _$csstype.Property.BoxPack | undefined;
- KhtmlLineBreak?: _$csstype.Property.LineBreak | undefined;
- KhtmlOpacity?: _$csstype.Property.Opacity | undefined;
- KhtmlUserSelect?: _$csstype.Property.UserSelect | undefined;
- MozBackgroundClip?: _$csstype.Property.BackgroundClip | undefined;
- MozBackgroundOrigin?: _$csstype.Property.BackgroundOrigin | undefined;
- MozBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- MozBorderRadius?: _$csstype.Property.BorderRadius<string | number> | undefined;
- MozBorderRadiusBottomleft?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- MozBorderRadiusBottomright?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- MozBorderRadiusTopleft?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- MozBorderRadiusTopright?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- MozBoxAlign?: _$csstype.Property.BoxAlign | undefined;
- MozBoxDirection?: _$csstype.Property.BoxDirection | undefined;
- MozBoxFlex?: _$csstype.Property.BoxFlex | undefined;
- MozBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- MozBoxOrient?: _$csstype.Property.BoxOrient | undefined;
- MozBoxPack?: _$csstype.Property.BoxPack | undefined;
- MozBoxShadow?: _$csstype.Property.BoxShadow | undefined;
- MozColumnCount?: _$csstype.Property.ColumnCount | undefined;
- MozColumnFill?: _$csstype.Property.ColumnFill | undefined;
- MozFloatEdge?: _$csstype.Property.MozFloatEdge | undefined;
- MozForceBrokenImageIcon?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
- MozOpacity?: _$csstype.Property.Opacity | undefined;
- MozOutline?: _$csstype.Property.Outline<string | number> | undefined;
- MozOutlineColor?: _$csstype.Property.OutlineColor | undefined;
- MozOutlineStyle?: _$csstype.Property.OutlineStyle | undefined;
- MozOutlineWidth?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- MozTextAlignLast?: _$csstype.Property.TextAlignLast | undefined;
- MozTextDecorationColor?: _$csstype.Property.TextDecorationColor | undefined;
- MozTextDecorationLine?: _$csstype.Property.TextDecorationLine | undefined;
- MozTextDecorationStyle?: _$csstype.Property.TextDecorationStyle | undefined;
- MozTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- MozTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- MozTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- MozTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- MozUserFocus?: _$csstype.Property.MozUserFocus | undefined;
- MozUserInput?: _$csstype.Property.MozUserInput | undefined;
- msImeMode?: _$csstype.Property.ImeMode | undefined;
- OAnimation?: _$csstype.Property.Animation<string & {}> | undefined;
- OAnimationDelay?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- OAnimationDirection?: _$csstype.Property.AnimationDirection | undefined;
- OAnimationDuration?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- OAnimationFillMode?: _$csstype.Property.AnimationFillMode | undefined;
- OAnimationIterationCount?: _$csstype.Property.AnimationIterationCount | undefined;
- OAnimationName?: _$csstype.Property.AnimationName | undefined;
- OAnimationPlayState?: _$csstype.Property.AnimationPlayState | undefined;
- OAnimationTimingFunction?: _$csstype.Property.AnimationTimingFunction | undefined;
- OBackgroundSize?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- OBorderImage?: _$csstype.Property.BorderImage | undefined;
- OObjectFit?: _$csstype.Property.ObjectFit | undefined;
- OObjectPosition?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- OTabSize?: _$csstype.Property.TabSize<string | number> | undefined;
- OTextOverflow?: _$csstype.Property.TextOverflow | undefined;
- OTransform?: _$csstype.Property.Transform | undefined;
- OTransformOrigin?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- OTransition?: _$csstype.Property.Transition<string & {}> | undefined;
- OTransitionDelay?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- OTransitionDuration?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- OTransitionProperty?: _$csstype.Property.TransitionProperty | undefined;
- OTransitionTimingFunction?: _$csstype.Property.TransitionTimingFunction | undefined;
- WebkitBoxAlign?: _$csstype.Property.BoxAlign | undefined;
- WebkitBoxDirection?: _$csstype.Property.BoxDirection | undefined;
- WebkitBoxFlex?: _$csstype.Property.BoxFlex | undefined;
- WebkitBoxFlexGroup?: _$csstype.Property.BoxFlexGroup | undefined;
- WebkitBoxLines?: _$csstype.Property.BoxLines | undefined;
- WebkitBoxOrdinalGroup?: _$csstype.Property.BoxOrdinalGroup | undefined;
- WebkitBoxOrient?: _$csstype.Property.BoxOrient | undefined;
- WebkitBoxPack?: _$csstype.Property.BoxPack | undefined;
- colorInterpolation?: _$csstype.Property.ColorInterpolation | undefined;
- colorRendering?: _$csstype.Property.ColorRendering | undefined;
- glyphOrientationVertical?: _$csstype.Property.GlyphOrientationVertical | undefined;
- "accent-color"?: _$csstype.Property.AccentColor | undefined;
- "align-content"?: _$csstype.Property.AlignContent | undefined;
- "align-items"?: _$csstype.Property.AlignItems | undefined;
- "align-self"?: _$csstype.Property.AlignSelf | undefined;
- "align-tracks"?: _$csstype.Property.AlignTracks | undefined;
- "alignment-baseline"?: _$csstype.Property.AlignmentBaseline | undefined;
- "anchor-name"?: _$csstype.Property.AnchorName | undefined;
- "anchor-scope"?: _$csstype.Property.AnchorScope | undefined;
- "animation-composition"?: _$csstype.Property.AnimationComposition | undefined;
- "animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "animation-name"?: _$csstype.Property.AnimationName | undefined;
- "animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "animation-range-end"?: _$csstype.Property.AnimationRangeEnd<string | number> | undefined;
- "animation-range-start"?: _$csstype.Property.AnimationRangeStart<string | number> | undefined;
- "animation-timeline"?: _$csstype.Property.AnimationTimeline | undefined;
- "animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "aspect-ratio"?: _$csstype.Property.AspectRatio | undefined;
- "backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
- "backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
- "background-attachment"?: _$csstype.Property.BackgroundAttachment | undefined;
- "background-blend-mode"?: _$csstype.Property.BackgroundBlendMode | undefined;
- "background-clip"?: _$csstype.Property.BackgroundClip | undefined;
- "background-color"?: _$csstype.Property.BackgroundColor | undefined;
- "background-image"?: _$csstype.Property.BackgroundImage | undefined;
- "background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
- "background-position-x"?: _$csstype.Property.BackgroundPositionX<string | number> | undefined;
- "background-position-y"?: _$csstype.Property.BackgroundPositionY<string | number> | undefined;
- "background-repeat"?: _$csstype.Property.BackgroundRepeat | undefined;
- "background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "baseline-shift"?: _$csstype.Property.BaselineShift<string | number> | undefined;
- "block-size"?: _$csstype.Property.BlockSize<string | number> | undefined;
- "border-block-end-color"?: _$csstype.Property.BorderBlockEndColor | undefined;
- "border-block-end-style"?: _$csstype.Property.BorderBlockEndStyle | undefined;
- "border-block-end-width"?: _$csstype.Property.BorderBlockEndWidth<string | number> | undefined;
- "border-block-start-color"?: _$csstype.Property.BorderBlockStartColor | undefined;
- "border-block-start-style"?: _$csstype.Property.BorderBlockStartStyle | undefined;
- "border-block-start-width"?: _$csstype.Property.BorderBlockStartWidth<string | number> | undefined;
- "border-bottom-color"?: _$csstype.Property.BorderBottomColor | undefined;
- "border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- "border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- "border-bottom-style"?: _$csstype.Property.BorderBottomStyle | undefined;
- "border-bottom-width"?: _$csstype.Property.BorderBottomWidth<string | number> | undefined;
- "border-collapse"?: _$csstype.Property.BorderCollapse | undefined;
- "border-end-end-radius"?: _$csstype.Property.BorderEndEndRadius<string | number> | undefined;
- "border-end-start-radius"?: _$csstype.Property.BorderEndStartRadius<string | number> | undefined;
- "border-image-outset"?: _$csstype.Property.BorderImageOutset<string | number> | undefined;
- "border-image-repeat"?: _$csstype.Property.BorderImageRepeat | undefined;
- "border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
- "border-image-source"?: _$csstype.Property.BorderImageSource | undefined;
- "border-image-width"?: _$csstype.Property.BorderImageWidth<string | number> | undefined;
- "border-inline-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
- "border-inline-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
- "border-inline-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- "border-inline-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
- "border-inline-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
- "border-inline-start-width"?: _$csstype.Property.BorderInlineStartWidth<string | number> | undefined;
- "border-left-color"?: _$csstype.Property.BorderLeftColor | undefined;
- "border-left-style"?: _$csstype.Property.BorderLeftStyle | undefined;
- "border-left-width"?: _$csstype.Property.BorderLeftWidth<string | number> | undefined;
- "border-right-color"?: _$csstype.Property.BorderRightColor | undefined;
- "border-right-style"?: _$csstype.Property.BorderRightStyle | undefined;
- "border-right-width"?: _$csstype.Property.BorderRightWidth<string | number> | undefined;
- "border-spacing"?: _$csstype.Property.BorderSpacing<string | number> | undefined;
- "border-start-end-radius"?: _$csstype.Property.BorderStartEndRadius<string | number> | undefined;
- "border-start-start-radius"?: _$csstype.Property.BorderStartStartRadius<string | number> | undefined;
- "border-top-color"?: _$csstype.Property.BorderTopColor | undefined;
- "border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- "border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- "border-top-style"?: _$csstype.Property.BorderTopStyle | undefined;
- "border-top-width"?: _$csstype.Property.BorderTopWidth<string | number> | undefined;
- "box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
- "box-shadow"?: _$csstype.Property.BoxShadow | undefined;
- "box-sizing"?: _$csstype.Property.BoxSizing | undefined;
- "break-after"?: _$csstype.Property.BreakAfter | undefined;
- "break-before"?: _$csstype.Property.BreakBefore | undefined;
- "break-inside"?: _$csstype.Property.BreakInside | undefined;
- "caption-side"?: _$csstype.Property.CaptionSide | undefined;
- "caret-color"?: _$csstype.Property.CaretColor | undefined;
- "caret-shape"?: _$csstype.Property.CaretShape | undefined;
- "clip-path"?: _$csstype.Property.ClipPath | undefined;
- "clip-rule"?: _$csstype.Property.ClipRule | undefined;
- "color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
- "color-interpolation-filters"?: _$csstype.Property.ColorInterpolationFilters | undefined;
- "color-scheme"?: _$csstype.Property.ColorScheme | undefined;
- "column-count"?: _$csstype.Property.ColumnCount | undefined;
- "column-fill"?: _$csstype.Property.ColumnFill | undefined;
- "column-gap"?: _$csstype.Property.ColumnGap<string | number> | undefined;
- "column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
- "column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
- "column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- "column-span"?: _$csstype.Property.ColumnSpan | undefined;
- "column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- "contain-intrinsic-block-size"?: _$csstype.Property.ContainIntrinsicBlockSize<string | number> | undefined;
- "contain-intrinsic-height"?: _$csstype.Property.ContainIntrinsicHeight<string | number> | undefined;
- "contain-intrinsic-inline-size"?: _$csstype.Property.ContainIntrinsicInlineSize<string | number> | undefined;
- "contain-intrinsic-width"?: _$csstype.Property.ContainIntrinsicWidth<string | number> | undefined;
- "container-name"?: _$csstype.Property.ContainerName | undefined;
- "container-type"?: _$csstype.Property.ContainerType | undefined;
- "content-visibility"?: _$csstype.Property.ContentVisibility | undefined;
- "counter-increment"?: _$csstype.Property.CounterIncrement | undefined;
- "counter-reset"?: _$csstype.Property.CounterReset | undefined;
- "counter-set"?: _$csstype.Property.CounterSet | undefined;
- "dominant-baseline"?: _$csstype.Property.DominantBaseline | undefined;
- "empty-cells"?: _$csstype.Property.EmptyCells | undefined;
- "field-sizing"?: _$csstype.Property.FieldSizing | undefined;
- "fill-opacity"?: _$csstype.Property.FillOpacity | undefined;
- "fill-rule"?: _$csstype.Property.FillRule | undefined;
- "flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
- "flex-direction"?: _$csstype.Property.FlexDirection | undefined;
- "flex-grow"?: _$csstype.Property.FlexGrow | undefined;
- "flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
- "flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
- "flood-color"?: _$csstype.Property.FloodColor | undefined;
- "flood-opacity"?: _$csstype.Property.FloodOpacity | undefined;
- "font-family"?: _$csstype.Property.FontFamily | undefined;
- "font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
- "font-kerning"?: _$csstype.Property.FontKerning | undefined;
- "font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
- "font-optical-sizing"?: _$csstype.Property.FontOpticalSizing | undefined;
- "font-palette"?: _$csstype.Property.FontPalette | undefined;
- "font-size"?: _$csstype.Property.FontSize<string | number> | undefined;
- "font-size-adjust"?: _$csstype.Property.FontSizeAdjust | undefined;
- "font-smooth"?: _$csstype.Property.FontSmooth<string | number> | undefined;
- "font-style"?: _$csstype.Property.FontStyle | undefined;
- "font-synthesis"?: _$csstype.Property.FontSynthesis | undefined;
- "font-synthesis-position"?: _$csstype.Property.FontSynthesisPosition | undefined;
- "font-synthesis-small-caps"?: _$csstype.Property.FontSynthesisSmallCaps | undefined;
- "font-synthesis-style"?: _$csstype.Property.FontSynthesisStyle | undefined;
- "font-synthesis-weight"?: _$csstype.Property.FontSynthesisWeight | undefined;
- "font-variant"?: _$csstype.Property.FontVariant | undefined;
- "font-variant-alternates"?: _$csstype.Property.FontVariantAlternates | undefined;
- "font-variant-caps"?: _$csstype.Property.FontVariantCaps | undefined;
- "font-variant-east-asian"?: _$csstype.Property.FontVariantEastAsian | undefined;
- "font-variant-emoji"?: _$csstype.Property.FontVariantEmoji | undefined;
- "font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
- "font-variant-numeric"?: _$csstype.Property.FontVariantNumeric | undefined;
- "font-variant-position"?: _$csstype.Property.FontVariantPosition | undefined;
- "font-variation-settings"?: _$csstype.Property.FontVariationSettings | undefined;
- "font-weight"?: _$csstype.Property.FontWeight | undefined;
- "font-width"?: _$csstype.Property.FontWidth | undefined;
- "forced-color-adjust"?: _$csstype.Property.ForcedColorAdjust | undefined;
- "grid-auto-columns"?: _$csstype.Property.GridAutoColumns<string | number> | undefined;
- "grid-auto-flow"?: _$csstype.Property.GridAutoFlow | undefined;
- "grid-auto-rows"?: _$csstype.Property.GridAutoRows<string | number> | undefined;
- "grid-column-end"?: _$csstype.Property.GridColumnEnd | undefined;
- "grid-column-start"?: _$csstype.Property.GridColumnStart | undefined;
- "grid-row-end"?: _$csstype.Property.GridRowEnd | undefined;
- "grid-row-start"?: _$csstype.Property.GridRowStart | undefined;
- "grid-template-areas"?: _$csstype.Property.GridTemplateAreas | undefined;
- "grid-template-columns"?: _$csstype.Property.GridTemplateColumns<string | number> | undefined;
- "grid-template-rows"?: _$csstype.Property.GridTemplateRows<string | number> | undefined;
- "hanging-punctuation"?: _$csstype.Property.HangingPunctuation | undefined;
- "hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
- "hyphenate-limit-chars"?: _$csstype.Property.HyphenateLimitChars | undefined;
- "image-orientation"?: _$csstype.Property.ImageOrientation | undefined;
- "image-rendering"?: _$csstype.Property.ImageRendering | undefined;
- "image-resolution"?: _$csstype.Property.ImageResolution | undefined;
- "initial-letter"?: _$csstype.Property.InitialLetter | undefined;
- "initial-letter-align"?: _$csstype.Property.InitialLetterAlign | undefined;
- "inline-size"?: _$csstype.Property.InlineSize<string | number> | undefined;
- "inset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- "inset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- "inset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- "inset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- "interpolate-size"?: _$csstype.Property.InterpolateSize | undefined;
- "justify-content"?: _$csstype.Property.JustifyContent | undefined;
- "justify-items"?: _$csstype.Property.JustifyItems | undefined;
- "justify-self"?: _$csstype.Property.JustifySelf | undefined;
- "justify-tracks"?: _$csstype.Property.JustifyTracks | undefined;
- "letter-spacing"?: _$csstype.Property.LetterSpacing<string | number> | undefined;
- "lighting-color"?: _$csstype.Property.LightingColor | undefined;
- "line-break"?: _$csstype.Property.LineBreak | undefined;
- "line-height"?: _$csstype.Property.LineHeight<string | number> | undefined;
- "line-height-step"?: _$csstype.Property.LineHeightStep<string | number> | undefined;
- "list-style-image"?: _$csstype.Property.ListStyleImage | undefined;
- "list-style-position"?: _$csstype.Property.ListStylePosition | undefined;
- "list-style-type"?: _$csstype.Property.ListStyleType | undefined;
- "margin-block-end"?: _$csstype.Property.MarginBlockEnd<string | number> | undefined;
- "margin-block-start"?: _$csstype.Property.MarginBlockStart<string | number> | undefined;
- "margin-bottom"?: _$csstype.Property.MarginBottom<string | number> | undefined;
- "margin-inline-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- "margin-inline-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- "margin-left"?: _$csstype.Property.MarginLeft<string | number> | undefined;
- "margin-right"?: _$csstype.Property.MarginRight<string | number> | undefined;
- "margin-top"?: _$csstype.Property.MarginTop<string | number> | undefined;
- "margin-trim"?: _$csstype.Property.MarginTrim | undefined;
- "marker-end"?: _$csstype.Property.MarkerEnd | undefined;
- "marker-mid"?: _$csstype.Property.MarkerMid | undefined;
- "marker-start"?: _$csstype.Property.MarkerStart | undefined;
- "mask-border-mode"?: _$csstype.Property.MaskBorderMode | undefined;
- "mask-border-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- "mask-border-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
- "mask-border-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
- "mask-border-source"?: _$csstype.Property.MaskBorderSource | undefined;
- "mask-border-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- "mask-clip"?: _$csstype.Property.MaskClip | undefined;
- "mask-composite"?: _$csstype.Property.MaskComposite | undefined;
- "mask-image"?: _$csstype.Property.MaskImage | undefined;
- "mask-mode"?: _$csstype.Property.MaskMode | undefined;
- "mask-origin"?: _$csstype.Property.MaskOrigin | undefined;
- "mask-position"?: _$csstype.Property.MaskPosition<string | number> | undefined;
- "mask-repeat"?: _$csstype.Property.MaskRepeat | undefined;
- "mask-size"?: _$csstype.Property.MaskSize<string | number> | undefined;
- "mask-type"?: _$csstype.Property.MaskType | undefined;
- "masonry-auto-flow"?: _$csstype.Property.MasonryAutoFlow | undefined;
- "math-depth"?: _$csstype.Property.MathDepth | undefined;
- "math-shift"?: _$csstype.Property.MathShift | undefined;
- "math-style"?: _$csstype.Property.MathStyle | undefined;
- "max-block-size"?: _$csstype.Property.MaxBlockSize<string | number> | undefined;
- "max-height"?: _$csstype.Property.MaxHeight<string | number> | undefined;
- "max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- "max-lines"?: _$csstype.Property.MaxLines | undefined;
- "max-width"?: _$csstype.Property.MaxWidth<string | number> | undefined;
- "min-block-size"?: _$csstype.Property.MinBlockSize<string | number> | undefined;
- "min-height"?: _$csstype.Property.MinHeight<string | number> | undefined;
- "min-inline-size"?: _$csstype.Property.MinInlineSize<string | number> | undefined;
- "min-width"?: _$csstype.Property.MinWidth<string | number> | undefined;
- "mix-blend-mode"?: _$csstype.Property.MixBlendMode | undefined;
- "motion-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- "motion-path"?: _$csstype.Property.OffsetPath | undefined;
- "motion-rotation"?: _$csstype.Property.OffsetRotate | undefined;
- "object-fit"?: _$csstype.Property.ObjectFit | undefined;
- "object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- "object-view-box"?: _$csstype.Property.ObjectViewBox | undefined;
- "offset-anchor"?: _$csstype.Property.OffsetAnchor<string | number> | undefined;
- "offset-distance"?: _$csstype.Property.OffsetDistance<string | number> | undefined;
- "offset-path"?: _$csstype.Property.OffsetPath | undefined;
- "offset-position"?: _$csstype.Property.OffsetPosition<string | number> | undefined;
- "offset-rotate"?: _$csstype.Property.OffsetRotate | undefined;
- "offset-rotation"?: _$csstype.Property.OffsetRotate | undefined;
- "outline-color"?: _$csstype.Property.OutlineColor | undefined;
- "outline-offset"?: _$csstype.Property.OutlineOffset<string | number> | undefined;
- "outline-style"?: _$csstype.Property.OutlineStyle | undefined;
- "outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- "overflow-anchor"?: _$csstype.Property.OverflowAnchor | undefined;
- "overflow-block"?: _$csstype.Property.OverflowBlock | undefined;
- "overflow-clip-box"?: _$csstype.Property.OverflowClipBox | undefined;
- "overflow-clip-margin"?: _$csstype.Property.OverflowClipMargin<string | number> | undefined;
- "overflow-inline"?: _$csstype.Property.OverflowInline | undefined;
- "overflow-wrap"?: _$csstype.Property.OverflowWrap | undefined;
- "overflow-x"?: _$csstype.Property.OverflowX | undefined;
- "overflow-y"?: _$csstype.Property.OverflowY | undefined;
- "overscroll-behavior-block"?: _$csstype.Property.OverscrollBehaviorBlock | undefined;
- "overscroll-behavior-inline"?: _$csstype.Property.OverscrollBehaviorInline | undefined;
- "overscroll-behavior-x"?: _$csstype.Property.OverscrollBehaviorX | undefined;
- "overscroll-behavior-y"?: _$csstype.Property.OverscrollBehaviorY | undefined;
- "padding-block-end"?: _$csstype.Property.PaddingBlockEnd<string | number> | undefined;
- "padding-block-start"?: _$csstype.Property.PaddingBlockStart<string | number> | undefined;
- "padding-bottom"?: _$csstype.Property.PaddingBottom<string | number> | undefined;
- "padding-inline-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- "padding-inline-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- "padding-left"?: _$csstype.Property.PaddingLeft<string | number> | undefined;
- "padding-right"?: _$csstype.Property.PaddingRight<string | number> | undefined;
- "padding-top"?: _$csstype.Property.PaddingTop<string | number> | undefined;
- "paint-order"?: _$csstype.Property.PaintOrder | undefined;
- "perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- "pointer-events"?: _$csstype.Property.PointerEvents | undefined;
- "position-anchor"?: _$csstype.Property.PositionAnchor | undefined;
- "position-area"?: _$csstype.Property.PositionArea | undefined;
- "position-try-fallbacks"?: _$csstype.Property.PositionTryFallbacks | undefined;
- "position-try-order"?: _$csstype.Property.PositionTryOrder | undefined;
- "position-visibility"?: _$csstype.Property.PositionVisibility | undefined;
- "print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
- "row-gap"?: _$csstype.Property.RowGap<string | number> | undefined;
- "ruby-align"?: _$csstype.Property.RubyAlign | undefined;
- "ruby-merge"?: _$csstype.Property.RubyMerge | undefined;
- "ruby-overhang"?: _$csstype.Property.RubyOverhang | undefined;
- "ruby-position"?: _$csstype.Property.RubyPosition | undefined;
- "scroll-behavior"?: _$csstype.Property.ScrollBehavior | undefined;
- "scroll-initial-target"?: _$csstype.Property.ScrollInitialTarget | undefined;
- "scroll-margin-block-end"?: _$csstype.Property.ScrollMarginBlockEnd<string | number> | undefined;
- "scroll-margin-block-start"?: _$csstype.Property.ScrollMarginBlockStart<string | number> | undefined;
- "scroll-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- "scroll-margin-inline-end"?: _$csstype.Property.ScrollMarginInlineEnd<string | number> | undefined;
- "scroll-margin-inline-start"?: _$csstype.Property.ScrollMarginInlineStart<string | number> | undefined;
- "scroll-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- "scroll-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- "scroll-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- "scroll-padding-block-end"?: _$csstype.Property.ScrollPaddingBlockEnd<string | number> | undefined;
- "scroll-padding-block-start"?: _$csstype.Property.ScrollPaddingBlockStart<string | number> | undefined;
- "scroll-padding-bottom"?: _$csstype.Property.ScrollPaddingBottom<string | number> | undefined;
- "scroll-padding-inline-end"?: _$csstype.Property.ScrollPaddingInlineEnd<string | number> | undefined;
- "scroll-padding-inline-start"?: _$csstype.Property.ScrollPaddingInlineStart<string | number> | undefined;
- "scroll-padding-left"?: _$csstype.Property.ScrollPaddingLeft<string | number> | undefined;
- "scroll-padding-right"?: _$csstype.Property.ScrollPaddingRight<string | number> | undefined;
- "scroll-padding-top"?: _$csstype.Property.ScrollPaddingTop<string | number> | undefined;
- "scroll-snap-align"?: _$csstype.Property.ScrollSnapAlign | undefined;
- "scroll-snap-margin-bottom"?: _$csstype.Property.ScrollMarginBottom<string | number> | undefined;
- "scroll-snap-margin-left"?: _$csstype.Property.ScrollMarginLeft<string | number> | undefined;
- "scroll-snap-margin-right"?: _$csstype.Property.ScrollMarginRight<string | number> | undefined;
- "scroll-snap-margin-top"?: _$csstype.Property.ScrollMarginTop<string | number> | undefined;
- "scroll-snap-stop"?: _$csstype.Property.ScrollSnapStop | undefined;
- "scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
- "scroll-timeline-axis"?: _$csstype.Property.ScrollTimelineAxis | undefined;
- "scroll-timeline-name"?: _$csstype.Property.ScrollTimelineName | undefined;
- "scrollbar-color"?: _$csstype.Property.ScrollbarColor | undefined;
- "scrollbar-gutter"?: _$csstype.Property.ScrollbarGutter | undefined;
- "scrollbar-width"?: _$csstype.Property.ScrollbarWidth | undefined;
- "shape-image-threshold"?: _$csstype.Property.ShapeImageThreshold | undefined;
- "shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- "shape-outside"?: _$csstype.Property.ShapeOutside | undefined;
- "shape-rendering"?: _$csstype.Property.ShapeRendering | undefined;
- "speak-as"?: _$csstype.Property.SpeakAs | undefined;
- "stop-color"?: _$csstype.Property.StopColor | undefined;
- "stop-opacity"?: _$csstype.Property.StopOpacity | undefined;
- "stroke-color"?: _$csstype.Property.StrokeColor | undefined;
- "stroke-dasharray"?: _$csstype.Property.StrokeDasharray<string | number> | undefined;
- "stroke-dashoffset"?: _$csstype.Property.StrokeDashoffset<string | number> | undefined;
- "stroke-linecap"?: _$csstype.Property.StrokeLinecap | undefined;
- "stroke-linejoin"?: _$csstype.Property.StrokeLinejoin | undefined;
- "stroke-miterlimit"?: _$csstype.Property.StrokeMiterlimit | undefined;
- "stroke-opacity"?: _$csstype.Property.StrokeOpacity | undefined;
- "stroke-width"?: _$csstype.Property.StrokeWidth<string | number> | undefined;
- "tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
- "table-layout"?: _$csstype.Property.TableLayout | undefined;
- "text-align"?: _$csstype.Property.TextAlign | undefined;
- "text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
- "text-anchor"?: _$csstype.Property.TextAnchor | undefined;
- "text-autospace"?: _$csstype.Property.TextAutospace | undefined;
- "text-box"?: _$csstype.Property.TextBox | undefined;
- "text-box-edge"?: _$csstype.Property.TextBoxEdge | undefined;
- "text-box-trim"?: _$csstype.Property.TextBoxTrim | undefined;
- "text-combine-upright"?: _$csstype.Property.TextCombineUpright | undefined;
- "text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
- "text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
- "text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
- "text-decoration-skip-ink"?: _$csstype.Property.TextDecorationSkipInk | undefined;
- "text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
- "text-decoration-thickness"?: _$csstype.Property.TextDecorationThickness<string | number> | undefined;
- "text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
- "text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
- "text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
- "text-indent"?: _$csstype.Property.TextIndent<string | number> | undefined;
- "text-justify"?: _$csstype.Property.TextJustify | undefined;
- "text-orientation"?: _$csstype.Property.TextOrientation | undefined;
- "text-overflow"?: _$csstype.Property.TextOverflow | undefined;
- "text-rendering"?: _$csstype.Property.TextRendering | undefined;
- "text-shadow"?: _$csstype.Property.TextShadow | undefined;
- "text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
- "text-spacing-trim"?: _$csstype.Property.TextSpacingTrim | undefined;
- "text-transform"?: _$csstype.Property.TextTransform | undefined;
- "text-underline-offset"?: _$csstype.Property.TextUnderlineOffset<string | number> | undefined;
- "text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
- "text-wrap-mode"?: _$csstype.Property.TextWrapMode | undefined;
- "text-wrap-style"?: _$csstype.Property.TextWrapStyle | undefined;
- "timeline-scope"?: _$csstype.Property.TimelineScope | undefined;
- "touch-action"?: _$csstype.Property.TouchAction | undefined;
- "transform-box"?: _$csstype.Property.TransformBox | undefined;
- "transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "transform-style"?: _$csstype.Property.TransformStyle | undefined;
- "transition-behavior"?: _$csstype.Property.TransitionBehavior | undefined;
- "transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "unicode-bidi"?: _$csstype.Property.UnicodeBidi | undefined;
- "user-select"?: _$csstype.Property.UserSelect | undefined;
- "vector-effect"?: _$csstype.Property.VectorEffect | undefined;
- "vertical-align"?: _$csstype.Property.VerticalAlign<string | number> | undefined;
- "view-timeline-axis"?: _$csstype.Property.ViewTimelineAxis | undefined;
- "view-timeline-inset"?: _$csstype.Property.ViewTimelineInset<string | number> | undefined;
- "view-timeline-name"?: _$csstype.Property.ViewTimelineName | undefined;
- "view-transition-class"?: _$csstype.Property.ViewTransitionClass | undefined;
- "view-transition-name"?: _$csstype.Property.ViewTransitionName | undefined;
- "white-space"?: _$csstype.Property.WhiteSpace | undefined;
- "white-space-collapse"?: _$csstype.Property.WhiteSpaceCollapse | undefined;
- "will-change"?: _$csstype.Property.WillChange | undefined;
- "word-break"?: _$csstype.Property.WordBreak | undefined;
- "word-spacing"?: _$csstype.Property.WordSpacing<string | number> | undefined;
- "word-wrap"?: _$csstype.Property.WordWrap | undefined;
- "writing-mode"?: _$csstype.Property.WritingMode | undefined;
- "z-index"?: _$csstype.Property.ZIndex | undefined;
- "animation-range"?: _$csstype.Property.AnimationRange<string | number> | undefined;
- "background-position"?: _$csstype.Property.BackgroundPosition<string | number> | undefined;
- "border-block"?: _$csstype.Property.BorderBlock<string | number> | undefined;
- "border-block-color"?: _$csstype.Property.BorderBlockColor | undefined;
- "border-block-end"?: _$csstype.Property.BorderBlockEnd<string | number> | undefined;
- "border-block-start"?: _$csstype.Property.BorderBlockStart<string | number> | undefined;
- "border-block-style"?: _$csstype.Property.BorderBlockStyle | undefined;
- "border-block-width"?: _$csstype.Property.BorderBlockWidth<string | number> | undefined;
- "border-bottom"?: _$csstype.Property.BorderBottom<string | number> | undefined;
- "border-color"?: _$csstype.Property.BorderColor | undefined;
- "border-image"?: _$csstype.Property.BorderImage | undefined;
- "border-inline"?: _$csstype.Property.BorderInline<string | number> | undefined;
- "border-inline-color"?: _$csstype.Property.BorderInlineColor | undefined;
- "border-inline-end"?: _$csstype.Property.BorderInlineEnd<string | number> | undefined;
- "border-inline-start"?: _$csstype.Property.BorderInlineStart<string | number> | undefined;
- "border-inline-style"?: _$csstype.Property.BorderInlineStyle | undefined;
- "border-inline-width"?: _$csstype.Property.BorderInlineWidth<string | number> | undefined;
- "border-left"?: _$csstype.Property.BorderLeft<string | number> | undefined;
- "border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
- "border-right"?: _$csstype.Property.BorderRight<string | number> | undefined;
- "border-style"?: _$csstype.Property.BorderStyle | undefined;
- "border-top"?: _$csstype.Property.BorderTop<string | number> | undefined;
- "border-width"?: _$csstype.Property.BorderWidth<string | number> | undefined;
- "column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
- "contain-intrinsic-size"?: _$csstype.Property.ContainIntrinsicSize<string | number> | undefined;
- "flex-flow"?: _$csstype.Property.FlexFlow | undefined;
- "grid-area"?: _$csstype.Property.GridArea | undefined;
- "grid-column"?: _$csstype.Property.GridColumn | undefined;
- "grid-row"?: _$csstype.Property.GridRow | undefined;
- "grid-template"?: _$csstype.Property.GridTemplate | undefined;
- "inset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
- "inset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
- "line-clamp"?: _$csstype.Property.LineClamp | undefined;
- "list-style"?: _$csstype.Property.ListStyle | undefined;
- "margin-block"?: _$csstype.Property.MarginBlock<string | number> | undefined;
- "margin-inline"?: _$csstype.Property.MarginInline<string | number> | undefined;
- "mask-border"?: _$csstype.Property.MaskBorder | undefined;
- "overscroll-behavior"?: _$csstype.Property.OverscrollBehavior | undefined;
- "padding-block"?: _$csstype.Property.PaddingBlock<string | number> | undefined;
- "padding-inline"?: _$csstype.Property.PaddingInline<string | number> | undefined;
- "place-content"?: _$csstype.Property.PlaceContent | undefined;
- "place-items"?: _$csstype.Property.PlaceItems | undefined;
- "place-self"?: _$csstype.Property.PlaceSelf | undefined;
- "position-try"?: _$csstype.Property.PositionTry | undefined;
- "scroll-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- "scroll-margin-block"?: _$csstype.Property.ScrollMarginBlock<string | number> | undefined;
- "scroll-margin-inline"?: _$csstype.Property.ScrollMarginInline<string | number> | undefined;
- "scroll-padding"?: _$csstype.Property.ScrollPadding<string | number> | undefined;
- "scroll-padding-block"?: _$csstype.Property.ScrollPaddingBlock<string | number> | undefined;
- "scroll-padding-inline"?: _$csstype.Property.ScrollPaddingInline<string | number> | undefined;
- "scroll-snap-margin"?: _$csstype.Property.ScrollMargin<string | number> | undefined;
- "scroll-timeline"?: _$csstype.Property.ScrollTimeline | undefined;
- "text-decoration"?: _$csstype.Property.TextDecoration<string | number> | undefined;
- "text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
- "text-wrap"?: _$csstype.Property.TextWrap | undefined;
- "view-timeline"?: _$csstype.Property.ViewTimeline | undefined;
- "-moz-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "-moz-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "-moz-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "-moz-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "-moz-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "-moz-animation-name"?: _$csstype.Property.AnimationName | undefined;
- "-moz-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "-moz-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "-moz-appearance"?: _$csstype.Property.MozAppearance | undefined;
- "-moz-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
- "-moz-binding"?: _$csstype.Property.MozBinding | undefined;
- "-moz-border-bottom-colors"?: _$csstype.Property.MozBorderBottomColors | undefined;
- "-moz-border-end-color"?: _$csstype.Property.BorderInlineEndColor | undefined;
- "-moz-border-end-style"?: _$csstype.Property.BorderInlineEndStyle | undefined;
- "-moz-border-end-width"?: _$csstype.Property.BorderInlineEndWidth<string | number> | undefined;
- "-moz-border-left-colors"?: _$csstype.Property.MozBorderLeftColors | undefined;
- "-moz-border-right-colors"?: _$csstype.Property.MozBorderRightColors | undefined;
- "-moz-border-start-color"?: _$csstype.Property.BorderInlineStartColor | undefined;
- "-moz-border-start-style"?: _$csstype.Property.BorderInlineStartStyle | undefined;
- "-moz-border-top-colors"?: _$csstype.Property.MozBorderTopColors | undefined;
- "-moz-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
- "-moz-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
- "-moz-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
- "-moz-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- "-moz-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- "-moz-context-properties"?: _$csstype.Property.MozContextProperties | undefined;
- "-moz-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
- "-moz-font-language-override"?: _$csstype.Property.FontLanguageOverride | undefined;
- "-moz-hyphens"?: _$csstype.Property.Hyphens | undefined;
- "-moz-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- "-moz-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- "-moz-orient"?: _$csstype.Property.MozOrient | undefined;
- "-moz-osx-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
- "-moz-outline-radius-bottomleft"?: _$csstype.Property.MozOutlineRadiusBottomleft<string | number> | undefined;
- "-moz-outline-radius-bottomright"?: _$csstype.Property.MozOutlineRadiusBottomright<string | number> | undefined;
- "-moz-outline-radius-topleft"?: _$csstype.Property.MozOutlineRadiusTopleft<string | number> | undefined;
- "-moz-outline-radius-topright"?: _$csstype.Property.MozOutlineRadiusTopright<string | number> | undefined;
- "-moz-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- "-moz-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- "-moz-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
- "-moz-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- "-moz-stack-sizing"?: _$csstype.Property.MozStackSizing | undefined;
- "-moz-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
- "-moz-text-blink"?: _$csstype.Property.MozTextBlink | undefined;
- "-moz-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
- "-moz-transform"?: _$csstype.Property.Transform | undefined;
- "-moz-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-moz-transform-style"?: _$csstype.Property.TransformStyle | undefined;
- "-moz-user-modify"?: _$csstype.Property.MozUserModify | undefined;
- "-moz-user-select"?: _$csstype.Property.UserSelect | undefined;
- "-moz-window-dragging"?: _$csstype.Property.MozWindowDragging | undefined;
- "-moz-window-shadow"?: _$csstype.Property.MozWindowShadow | undefined;
- "-ms-accelerator"?: _$csstype.Property.MsAccelerator | undefined;
- "-ms-block-progression"?: _$csstype.Property.MsBlockProgression | undefined;
- "-ms-content-zoom-chaining"?: _$csstype.Property.MsContentZoomChaining | undefined;
- "-ms-content-zoom-limit-max"?: _$csstype.Property.MsContentZoomLimitMax | undefined;
- "-ms-content-zoom-limit-min"?: _$csstype.Property.MsContentZoomLimitMin | undefined;
- "-ms-content-zoom-snap-points"?: _$csstype.Property.MsContentZoomSnapPoints | undefined;
- "-ms-content-zoom-snap-type"?: _$csstype.Property.MsContentZoomSnapType | undefined;
- "-ms-content-zooming"?: _$csstype.Property.MsContentZooming | undefined;
- "-ms-filter"?: _$csstype.Property.MsFilter | undefined;
- "-ms-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
- "-ms-flex-positive"?: _$csstype.Property.FlexGrow | undefined;
- "-ms-flow-from"?: _$csstype.Property.MsFlowFrom | undefined;
- "-ms-flow-into"?: _$csstype.Property.MsFlowInto | undefined;
- "-ms-grid-columns"?: _$csstype.Property.MsGridColumns<string | number> | undefined;
- "-ms-grid-rows"?: _$csstype.Property.MsGridRows<string | number> | undefined;
- "-ms-high-contrast-adjust"?: _$csstype.Property.MsHighContrastAdjust | undefined;
- "-ms-hyphenate-limit-chars"?: _$csstype.Property.MsHyphenateLimitChars | undefined;
- "-ms-hyphenate-limit-lines"?: _$csstype.Property.MsHyphenateLimitLines | undefined;
- "-ms-hyphenate-limit-zone"?: _$csstype.Property.MsHyphenateLimitZone<string | number> | undefined;
- "-ms-hyphens"?: _$csstype.Property.Hyphens | undefined;
- "-ms-ime-align"?: _$csstype.Property.MsImeAlign | undefined;
- "-ms-line-break"?: _$csstype.Property.LineBreak | undefined;
- "-ms-order"?: _$csstype.Property.Order | undefined;
- "-ms-overflow-style"?: _$csstype.Property.MsOverflowStyle | undefined;
- "-ms-overflow-x"?: _$csstype.Property.OverflowX | undefined;
- "-ms-overflow-y"?: _$csstype.Property.OverflowY | undefined;
- "-ms-scroll-chaining"?: _$csstype.Property.MsScrollChaining | undefined;
- "-ms-scroll-limit-x-max"?: _$csstype.Property.MsScrollLimitXMax<string | number> | undefined;
- "-ms-scroll-limit-x-min"?: _$csstype.Property.MsScrollLimitXMin<string | number> | undefined;
- "-ms-scroll-limit-y-max"?: _$csstype.Property.MsScrollLimitYMax<string | number> | undefined;
- "-ms-scroll-limit-y-min"?: _$csstype.Property.MsScrollLimitYMin<string | number> | undefined;
- "-ms-scroll-rails"?: _$csstype.Property.MsScrollRails | undefined;
- "-ms-scroll-snap-points-x"?: _$csstype.Property.MsScrollSnapPointsX | undefined;
- "-ms-scroll-snap-points-y"?: _$csstype.Property.MsScrollSnapPointsY | undefined;
- "-ms-scroll-snap-type"?: _$csstype.Property.MsScrollSnapType | undefined;
- "-ms-scroll-translation"?: _$csstype.Property.MsScrollTranslation | undefined;
- "-ms-scrollbar-3dlight-color"?: _$csstype.Property.MsScrollbar3dlightColor | undefined;
- "-ms-scrollbar-arrow-color"?: _$csstype.Property.MsScrollbarArrowColor | undefined;
- "-ms-scrollbar-base-color"?: _$csstype.Property.MsScrollbarBaseColor | undefined;
- "-ms-scrollbar-darkshadow-color"?: _$csstype.Property.MsScrollbarDarkshadowColor | undefined;
- "-ms-scrollbar-face-color"?: _$csstype.Property.MsScrollbarFaceColor | undefined;
- "-ms-scrollbar-highlight-color"?: _$csstype.Property.MsScrollbarHighlightColor | undefined;
- "-ms-scrollbar-shadow-color"?: _$csstype.Property.MsScrollbarShadowColor | undefined;
- "-ms-scrollbar-track-color"?: _$csstype.Property.MsScrollbarTrackColor | undefined;
- "-ms-text-autospace"?: _$csstype.Property.MsTextAutospace | undefined;
- "-ms-text-combine-horizontal"?: _$csstype.Property.TextCombineUpright | undefined;
- "-ms-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
- "-ms-touch-action"?: _$csstype.Property.TouchAction | undefined;
- "-ms-touch-select"?: _$csstype.Property.MsTouchSelect | undefined;
- "-ms-transform"?: _$csstype.Property.Transform | undefined;
- "-ms-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-ms-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-ms-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-ms-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-ms-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-ms-user-select"?: _$csstype.Property.MsUserSelect | undefined;
- "-ms-word-break"?: _$csstype.Property.WordBreak | undefined;
- "-ms-wrap-flow"?: _$csstype.Property.MsWrapFlow | undefined;
- "-ms-wrap-margin"?: _$csstype.Property.MsWrapMargin<string | number> | undefined;
- "-ms-wrap-through"?: _$csstype.Property.MsWrapThrough | undefined;
- "-ms-writing-mode"?: _$csstype.Property.WritingMode | undefined;
- "-webkit-align-content"?: _$csstype.Property.AlignContent | undefined;
- "-webkit-align-items"?: _$csstype.Property.AlignItems | undefined;
- "-webkit-align-self"?: _$csstype.Property.AlignSelf | undefined;
- "-webkit-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "-webkit-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "-webkit-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "-webkit-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "-webkit-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "-webkit-animation-name"?: _$csstype.Property.AnimationName | undefined;
- "-webkit-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "-webkit-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "-webkit-appearance"?: _$csstype.Property.WebkitAppearance | undefined;
- "-webkit-backdrop-filter"?: _$csstype.Property.BackdropFilter | undefined;
- "-webkit-backface-visibility"?: _$csstype.Property.BackfaceVisibility | undefined;
- "-webkit-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
- "-webkit-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
- "-webkit-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "-webkit-border-before-color"?: _$csstype.Property.WebkitBorderBeforeColor | undefined;
- "-webkit-border-before-style"?: _$csstype.Property.WebkitBorderBeforeStyle | undefined;
- "-webkit-border-before-width"?: _$csstype.Property.WebkitBorderBeforeWidth<string | number> | undefined;
- "-webkit-border-bottom-left-radius"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- "-webkit-border-bottom-right-radius"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- "-webkit-border-image-slice"?: _$csstype.Property.BorderImageSlice | undefined;
- "-webkit-border-top-left-radius"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- "-webkit-border-top-right-radius"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- "-webkit-box-decoration-break"?: _$csstype.Property.BoxDecorationBreak | undefined;
- "-webkit-box-reflect"?: _$csstype.Property.WebkitBoxReflect<string | number> | undefined;
- "-webkit-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
- "-webkit-box-sizing"?: _$csstype.Property.BoxSizing | undefined;
- "-webkit-clip-path"?: _$csstype.Property.ClipPath | undefined;
- "-webkit-column-count"?: _$csstype.Property.ColumnCount | undefined;
- "-webkit-column-fill"?: _$csstype.Property.ColumnFill | undefined;
- "-webkit-column-rule-color"?: _$csstype.Property.ColumnRuleColor | undefined;
- "-webkit-column-rule-style"?: _$csstype.Property.ColumnRuleStyle | undefined;
- "-webkit-column-rule-width"?: _$csstype.Property.ColumnRuleWidth<string | number> | undefined;
- "-webkit-column-span"?: _$csstype.Property.ColumnSpan | undefined;
- "-webkit-column-width"?: _$csstype.Property.ColumnWidth<string | number> | undefined;
- "-webkit-filter"?: _$csstype.Property.Filter | undefined;
- "-webkit-flex-basis"?: _$csstype.Property.FlexBasis<string | number> | undefined;
- "-webkit-flex-direction"?: _$csstype.Property.FlexDirection | undefined;
- "-webkit-flex-grow"?: _$csstype.Property.FlexGrow | undefined;
- "-webkit-flex-shrink"?: _$csstype.Property.FlexShrink | undefined;
- "-webkit-flex-wrap"?: _$csstype.Property.FlexWrap | undefined;
- "-webkit-font-feature-settings"?: _$csstype.Property.FontFeatureSettings | undefined;
- "-webkit-font-kerning"?: _$csstype.Property.FontKerning | undefined;
- "-webkit-font-smoothing"?: _$csstype.Property.FontSmooth<string | number> | undefined;
- "-webkit-font-variant-ligatures"?: _$csstype.Property.FontVariantLigatures | undefined;
- "-webkit-hyphenate-character"?: _$csstype.Property.HyphenateCharacter | undefined;
- "-webkit-hyphens"?: _$csstype.Property.Hyphens | undefined;
- "-webkit-initial-letter"?: _$csstype.Property.InitialLetter | undefined;
- "-webkit-justify-content"?: _$csstype.Property.JustifyContent | undefined;
- "-webkit-line-break"?: _$csstype.Property.LineBreak | undefined;
- "-webkit-line-clamp"?: _$csstype.Property.WebkitLineClamp | undefined;
- "-webkit-logical-height"?: _$csstype.Property.BlockSize<string | number> | undefined;
- "-webkit-logical-width"?: _$csstype.Property.InlineSize<string | number> | undefined;
- "-webkit-margin-end"?: _$csstype.Property.MarginInlineEnd<string | number> | undefined;
- "-webkit-margin-start"?: _$csstype.Property.MarginInlineStart<string | number> | undefined;
- "-webkit-mask-attachment"?: _$csstype.Property.WebkitMaskAttachment | undefined;
- "-webkit-mask-box-image-outset"?: _$csstype.Property.MaskBorderOutset<string | number> | undefined;
- "-webkit-mask-box-image-repeat"?: _$csstype.Property.MaskBorderRepeat | undefined;
- "-webkit-mask-box-image-slice"?: _$csstype.Property.MaskBorderSlice | undefined;
- "-webkit-mask-box-image-source"?: _$csstype.Property.MaskBorderSource | undefined;
- "-webkit-mask-box-image-width"?: _$csstype.Property.MaskBorderWidth<string | number> | undefined;
- "-webkit-mask-clip"?: _$csstype.Property.WebkitMaskClip | undefined;
- "-webkit-mask-composite"?: _$csstype.Property.WebkitMaskComposite | undefined;
- "-webkit-mask-image"?: _$csstype.Property.WebkitMaskImage | undefined;
- "-webkit-mask-origin"?: _$csstype.Property.WebkitMaskOrigin | undefined;
- "-webkit-mask-position"?: _$csstype.Property.WebkitMaskPosition<string | number> | undefined;
- "-webkit-mask-position-x"?: _$csstype.Property.WebkitMaskPositionX<string | number> | undefined;
- "-webkit-mask-position-y"?: _$csstype.Property.WebkitMaskPositionY<string | number> | undefined;
- "-webkit-mask-repeat"?: _$csstype.Property.WebkitMaskRepeat | undefined;
- "-webkit-mask-repeat-x"?: _$csstype.Property.WebkitMaskRepeatX | undefined;
- "-webkit-mask-repeat-y"?: _$csstype.Property.WebkitMaskRepeatY | undefined;
- "-webkit-mask-size"?: _$csstype.Property.WebkitMaskSize<string | number> | undefined;
- "-webkit-max-inline-size"?: _$csstype.Property.MaxInlineSize<string | number> | undefined;
- "-webkit-order"?: _$csstype.Property.Order | undefined;
- "-webkit-overflow-scrolling"?: _$csstype.Property.WebkitOverflowScrolling | undefined;
- "-webkit-padding-end"?: _$csstype.Property.PaddingInlineEnd<string | number> | undefined;
- "-webkit-padding-start"?: _$csstype.Property.PaddingInlineStart<string | number> | undefined;
- "-webkit-perspective"?: _$csstype.Property.Perspective<string | number> | undefined;
- "-webkit-perspective-origin"?: _$csstype.Property.PerspectiveOrigin<string | number> | undefined;
- "-webkit-print-color-adjust"?: _$csstype.Property.PrintColorAdjust | undefined;
- "-webkit-ruby-position"?: _$csstype.Property.RubyPosition | undefined;
- "-webkit-scroll-snap-type"?: _$csstype.Property.ScrollSnapType | undefined;
- "-webkit-shape-margin"?: _$csstype.Property.ShapeMargin<string | number> | undefined;
- "-webkit-tap-highlight-color"?: _$csstype.Property.WebkitTapHighlightColor | undefined;
- "-webkit-text-combine"?: _$csstype.Property.TextCombineUpright | undefined;
- "-webkit-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
- "-webkit-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
- "-webkit-text-decoration-skip"?: _$csstype.Property.TextDecorationSkip | undefined;
- "-webkit-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
- "-webkit-text-emphasis-color"?: _$csstype.Property.TextEmphasisColor | undefined;
- "-webkit-text-emphasis-position"?: _$csstype.Property.TextEmphasisPosition | undefined;
- "-webkit-text-emphasis-style"?: _$csstype.Property.TextEmphasisStyle | undefined;
- "-webkit-text-fill-color"?: _$csstype.Property.WebkitTextFillColor | undefined;
- "-webkit-text-orientation"?: _$csstype.Property.TextOrientation | undefined;
- "-webkit-text-size-adjust"?: _$csstype.Property.TextSizeAdjust | undefined;
- "-webkit-text-stroke-color"?: _$csstype.Property.WebkitTextStrokeColor | undefined;
- "-webkit-text-stroke-width"?: _$csstype.Property.WebkitTextStrokeWidth<string | number> | undefined;
- "-webkit-text-underline-position"?: _$csstype.Property.TextUnderlinePosition | undefined;
- "-webkit-touch-callout"?: _$csstype.Property.WebkitTouchCallout | undefined;
- "-webkit-transform"?: _$csstype.Property.Transform | undefined;
- "-webkit-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-webkit-transform-style"?: _$csstype.Property.TransformStyle | undefined;
- "-webkit-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-webkit-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-webkit-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-webkit-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-webkit-user-modify"?: _$csstype.Property.WebkitUserModify | undefined;
- "-webkit-user-select"?: _$csstype.Property.WebkitUserSelect | undefined;
- "-webkit-writing-mode"?: _$csstype.Property.WritingMode | undefined;
- "-moz-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
- "-moz-border-image"?: _$csstype.Property.BorderImage | undefined;
- "-moz-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
- "-moz-columns"?: _$csstype.Property.Columns<string | number> | undefined;
- "-moz-outline-radius"?: _$csstype.Property.MozOutlineRadius<string | number> | undefined;
- "-moz-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "-ms-content-zoom-limit"?: _$csstype.Property.MsContentZoomLimit | undefined;
- "-ms-content-zoom-snap"?: _$csstype.Property.MsContentZoomSnap | undefined;
- "-ms-flex"?: _$csstype.Property.Flex<string | number> | undefined;
- "-ms-scroll-limit"?: _$csstype.Property.MsScrollLimit | undefined;
- "-ms-scroll-snap-x"?: _$csstype.Property.MsScrollSnapX | undefined;
- "-ms-scroll-snap-y"?: _$csstype.Property.MsScrollSnapY | undefined;
- "-ms-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "-webkit-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
- "-webkit-border-before"?: _$csstype.Property.WebkitBorderBefore<string | number> | undefined;
- "-webkit-border-image"?: _$csstype.Property.BorderImage | undefined;
- "-webkit-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
- "-webkit-column-rule"?: _$csstype.Property.ColumnRule<string | number> | undefined;
- "-webkit-columns"?: _$csstype.Property.Columns<string | number> | undefined;
- "-webkit-flex"?: _$csstype.Property.Flex<string | number> | undefined;
- "-webkit-flex-flow"?: _$csstype.Property.FlexFlow | undefined;
- "-webkit-mask"?: _$csstype.Property.WebkitMask<string | number> | undefined;
- "-webkit-mask-box-image"?: _$csstype.Property.MaskBorder | undefined;
- "-webkit-text-emphasis"?: _$csstype.Property.TextEmphasis | undefined;
- "-webkit-text-stroke"?: _$csstype.Property.WebkitTextStroke<string | number> | undefined;
- "-webkit-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "box-align"?: _$csstype.Property.BoxAlign | undefined;
- "box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
- "box-lines"?: _$csstype.Property.BoxLines | undefined;
- "box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "box-pack"?: _$csstype.Property.BoxPack | undefined;
- "font-stretch"?: _$csstype.Property.FontStretch | undefined;
- "grid-column-gap"?: _$csstype.Property.GridColumnGap<string | number> | undefined;
- "grid-gap"?: _$csstype.Property.GridGap<string | number> | undefined;
- "grid-row-gap"?: _$csstype.Property.GridRowGap<string | number> | undefined;
- "ime-mode"?: _$csstype.Property.ImeMode | undefined;
- "inset-area"?: _$csstype.Property.PositionArea | undefined;
- "offset-block"?: _$csstype.Property.InsetBlock<string | number> | undefined;
- "offset-block-end"?: _$csstype.Property.InsetBlockEnd<string | number> | undefined;
- "offset-block-start"?: _$csstype.Property.InsetBlockStart<string | number> | undefined;
- "offset-inline"?: _$csstype.Property.InsetInline<string | number> | undefined;
- "offset-inline-end"?: _$csstype.Property.InsetInlineEnd<string | number> | undefined;
- "offset-inline-start"?: _$csstype.Property.InsetInlineStart<string | number> | undefined;
- "page-break-after"?: _$csstype.Property.PageBreakAfter | undefined;
- "page-break-before"?: _$csstype.Property.PageBreakBefore | undefined;
- "page-break-inside"?: _$csstype.Property.PageBreakInside | undefined;
- "position-try-options"?: _$csstype.Property.PositionTryFallbacks | undefined;
- "scroll-snap-coordinate"?: _$csstype.Property.ScrollSnapCoordinate<string | number> | undefined;
- "scroll-snap-destination"?: _$csstype.Property.ScrollSnapDestination<string | number> | undefined;
- "scroll-snap-points-x"?: _$csstype.Property.ScrollSnapPointsX | undefined;
- "scroll-snap-points-y"?: _$csstype.Property.ScrollSnapPointsY | undefined;
- "scroll-snap-type-x"?: _$csstype.Property.ScrollSnapTypeX | undefined;
- "scroll-snap-type-y"?: _$csstype.Property.ScrollSnapTypeY | undefined;
- "-khtml-box-align"?: _$csstype.Property.BoxAlign | undefined;
- "-khtml-box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "-khtml-box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "-khtml-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
- "-khtml-box-lines"?: _$csstype.Property.BoxLines | undefined;
- "-khtml-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "-khtml-box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "-khtml-box-pack"?: _$csstype.Property.BoxPack | undefined;
- "-khtml-line-break"?: _$csstype.Property.LineBreak | undefined;
- "-khtml-opacity"?: _$csstype.Property.Opacity | undefined;
- "-khtml-user-select"?: _$csstype.Property.UserSelect | undefined;
- "-moz-background-clip"?: _$csstype.Property.BackgroundClip | undefined;
- "-moz-background-origin"?: _$csstype.Property.BackgroundOrigin | undefined;
- "-moz-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "-moz-border-radius"?: _$csstype.Property.BorderRadius<string | number> | undefined;
- "-moz-border-radius-bottomleft"?: _$csstype.Property.BorderBottomLeftRadius<string | number> | undefined;
- "-moz-border-radius-bottomright"?: _$csstype.Property.BorderBottomRightRadius<string | number> | undefined;
- "-moz-border-radius-topleft"?: _$csstype.Property.BorderTopLeftRadius<string | number> | undefined;
- "-moz-border-radius-topright"?: _$csstype.Property.BorderTopRightRadius<string | number> | undefined;
- "-moz-box-align"?: _$csstype.Property.BoxAlign | undefined;
- "-moz-box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "-moz-box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "-moz-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "-moz-box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "-moz-box-pack"?: _$csstype.Property.BoxPack | undefined;
- "-moz-box-shadow"?: _$csstype.Property.BoxShadow | undefined;
- "-moz-column-count"?: _$csstype.Property.ColumnCount | undefined;
- "-moz-column-fill"?: _$csstype.Property.ColumnFill | undefined;
- "-moz-float-edge"?: _$csstype.Property.MozFloatEdge | undefined;
- "-moz-force-broken-image-icon"?: _$csstype.Property.MozForceBrokenImageIcon | undefined;
- "-moz-opacity"?: _$csstype.Property.Opacity | undefined;
- "-moz-outline"?: _$csstype.Property.Outline<string | number> | undefined;
- "-moz-outline-color"?: _$csstype.Property.OutlineColor | undefined;
- "-moz-outline-style"?: _$csstype.Property.OutlineStyle | undefined;
- "-moz-outline-width"?: _$csstype.Property.OutlineWidth<string | number> | undefined;
- "-moz-text-align-last"?: _$csstype.Property.TextAlignLast | undefined;
- "-moz-text-decoration-color"?: _$csstype.Property.TextDecorationColor | undefined;
- "-moz-text-decoration-line"?: _$csstype.Property.TextDecorationLine | undefined;
- "-moz-text-decoration-style"?: _$csstype.Property.TextDecorationStyle | undefined;
- "-moz-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-moz-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-moz-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-moz-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-moz-user-focus"?: _$csstype.Property.MozUserFocus | undefined;
- "-moz-user-input"?: _$csstype.Property.MozUserInput | undefined;
- "-ms-ime-mode"?: _$csstype.Property.ImeMode | undefined;
- "-o-animation"?: _$csstype.Property.Animation<string & {}> | undefined;
- "-o-animation-delay"?: _$csstype.Property.AnimationDelay<string & {}> | undefined;
- "-o-animation-direction"?: _$csstype.Property.AnimationDirection | undefined;
- "-o-animation-duration"?: _$csstype.Property.AnimationDuration<string & {}> | undefined;
- "-o-animation-fill-mode"?: _$csstype.Property.AnimationFillMode | undefined;
- "-o-animation-iteration-count"?: _$csstype.Property.AnimationIterationCount | undefined;
- "-o-animation-name"?: _$csstype.Property.AnimationName | undefined;
- "-o-animation-play-state"?: _$csstype.Property.AnimationPlayState | undefined;
- "-o-animation-timing-function"?: _$csstype.Property.AnimationTimingFunction | undefined;
- "-o-background-size"?: _$csstype.Property.BackgroundSize<string | number> | undefined;
- "-o-border-image"?: _$csstype.Property.BorderImage | undefined;
- "-o-object-fit"?: _$csstype.Property.ObjectFit | undefined;
- "-o-object-position"?: _$csstype.Property.ObjectPosition<string | number> | undefined;
- "-o-tab-size"?: _$csstype.Property.TabSize<string | number> | undefined;
- "-o-text-overflow"?: _$csstype.Property.TextOverflow | undefined;
- "-o-transform"?: _$csstype.Property.Transform | undefined;
- "-o-transform-origin"?: _$csstype.Property.TransformOrigin<string | number> | undefined;
- "-o-transition"?: _$csstype.Property.Transition<string & {}> | undefined;
- "-o-transition-delay"?: _$csstype.Property.TransitionDelay<string & {}> | undefined;
- "-o-transition-duration"?: _$csstype.Property.TransitionDuration<string & {}> | undefined;
- "-o-transition-property"?: _$csstype.Property.TransitionProperty | undefined;
- "-o-transition-timing-function"?: _$csstype.Property.TransitionTimingFunction | undefined;
- "-webkit-box-align"?: _$csstype.Property.BoxAlign | undefined;
- "-webkit-box-direction"?: _$csstype.Property.BoxDirection | undefined;
- "-webkit-box-flex"?: _$csstype.Property.BoxFlex | undefined;
- "-webkit-box-flex-group"?: _$csstype.Property.BoxFlexGroup | undefined;
- "-webkit-box-lines"?: _$csstype.Property.BoxLines | undefined;
- "-webkit-box-ordinal-group"?: _$csstype.Property.BoxOrdinalGroup | undefined;
- "-webkit-box-orient"?: _$csstype.Property.BoxOrient | undefined;
- "-webkit-box-pack"?: _$csstype.Property.BoxPack | undefined;
- "color-interpolation"?: _$csstype.Property.ColorInterpolation | undefined;
- "color-rendering"?: _$csstype.Property.ColorRendering | undefined;
- "glyph-orientation-vertical"?: _$csstype.Property.GlyphOrientationVertical | undefined;
- }>;
- showInput: _$vue.Ref<boolean, boolean>;
- inputValue: _$vue.Ref<string, string>;
- inputPlaceholder: _$vue.Ref<string, string>;
- inputType: _$vue.Ref<InputType, InputType>;
- inputPattern: _$vue.Ref<RegExp | null, RegExp | null>;
- inputValidator: _$vue.Ref<MessageBoxInputValidator, MessageBoxInputValidator>;
- inputErrorMessage: _$vue.Ref<string, string>;
- showConfirmButton: _$vue.Ref<boolean, boolean>;
- showCancelButton: _$vue.Ref<boolean, boolean>;
- action: _$vue.Ref<Action, Action>;
- dangerouslyUseHTMLString: _$vue.Ref<boolean, boolean>;
- confirmButtonText: _$vue.Ref<string, string>;
- cancelButtonText: _$vue.Ref<string, string>;
- confirmButtonType: _$vue.Ref<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger", "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
- cancelButtonType: _$vue.Ref<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger", "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
- confirmButtonLoading: _$vue.Ref<boolean, boolean>;
- cancelButtonLoading: _$vue.Ref<boolean, boolean>;
- confirmButtonLoadingIcon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }>;
- cancelButtonLoadingIcon: _$vue.Ref<string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }, string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | {
- [x: string]: any;
- setup?: ((this: void, props: _$_vue_shared0.LooseRequired<any>, ctx: {
- attrs: {
- [x: string]: unknown;
- };
- slots: Readonly<{
- [name: string]: _$vue.Slot<any> | undefined;
- }>;
- emit: ((event: unknown, ...args: any[]) => void) | ((event: string, ...args: any[]) => void);
- expose: <Exposed extends Record<string, any> = Record<string, any>>(exposed?: Exposed) => void;
- }) => any) | undefined;
- name?: string | undefined;
- template?: string | object | undefined;
- render?: Function | undefined;
- components?: Record<string, _$vue.Component<any, any, any, _$vue.ComputedOptions, _$vue.MethodOptions, {}, any>> | undefined;
- directives?: Record<string, _$vue.Directive<any, any, string, any>> | undefined;
- inheritAttrs?: boolean | undefined;
- emits?: any;
- slots?: {} | undefined;
- expose?: string[] | undefined;
- serverPrefetch?: (() => void | Promise<any>) | undefined;
- compilerOptions?: {
- isCustomElement?: ((tag: string) => boolean) | undefined;
- whitespace?: "preserve" | "condense" | undefined;
- comments?: boolean | undefined;
- delimiters?: [string, string] | undefined;
- } | undefined;
- call?: ((this: unknown, ...args: unknown[]) => never) | undefined;
- __isFragment?: never | undefined;
- __isTeleport?: never | undefined;
- __isSuspense?: never | undefined;
- __defaults?: {} | undefined;
- compatConfig?: {
- GLOBAL_MOUNT?: boolean | "suppress-warning" | undefined;
- GLOBAL_MOUNT_CONTAINER?: boolean | "suppress-warning" | undefined;
- GLOBAL_EXTEND?: boolean | "suppress-warning" | undefined;
- GLOBAL_PROTOTYPE?: boolean | "suppress-warning" | undefined;
- GLOBAL_SET?: boolean | "suppress-warning" | undefined;
- GLOBAL_DELETE?: boolean | "suppress-warning" | undefined;
- GLOBAL_OBSERVABLE?: boolean | "suppress-warning" | undefined;
- GLOBAL_PRIVATE_UTIL?: boolean | "suppress-warning" | undefined;
- CONFIG_SILENT?: boolean | "suppress-warning" | undefined;
- CONFIG_DEVTOOLS?: boolean | "suppress-warning" | undefined;
- CONFIG_KEY_CODES?: boolean | "suppress-warning" | undefined;
- CONFIG_PRODUCTION_TIP?: boolean | "suppress-warning" | undefined;
- CONFIG_IGNORED_ELEMENTS?: boolean | "suppress-warning" | undefined;
- CONFIG_WHITESPACE?: boolean | "suppress-warning" | undefined;
- CONFIG_OPTION_MERGE_STRATS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SET?: boolean | "suppress-warning" | undefined;
- INSTANCE_DELETE?: boolean | "suppress-warning" | undefined;
- INSTANCE_DESTROY?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_EMITTER?: boolean | "suppress-warning" | undefined;
- INSTANCE_EVENT_HOOKS?: boolean | "suppress-warning" | undefined;
- INSTANCE_CHILDREN?: boolean | "suppress-warning" | undefined;
- INSTANCE_LISTENERS?: boolean | "suppress-warning" | undefined;
- INSTANCE_SCOPED_SLOTS?: boolean | "suppress-warning" | undefined;
- INSTANCE_ATTRS_CLASS_STYLE?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_FN?: boolean | "suppress-warning" | undefined;
- OPTIONS_DATA_MERGE?: boolean | "suppress-warning" | undefined;
- OPTIONS_BEFORE_DESTROY?: boolean | "suppress-warning" | undefined;
- OPTIONS_DESTROYED?: boolean | "suppress-warning" | undefined;
- WATCH_ARRAY?: boolean | "suppress-warning" | undefined;
- PROPS_DEFAULT_THIS?: boolean | "suppress-warning" | undefined;
- V_ON_KEYCODE_MODIFIER?: boolean | "suppress-warning" | undefined;
- CUSTOM_DIR?: boolean | "suppress-warning" | undefined;
- ATTR_FALSE_VALUE?: boolean | "suppress-warning" | undefined;
- ATTR_ENUMERATED_COERCION?: boolean | "suppress-warning" | undefined;
- TRANSITION_CLASSES?: boolean | "suppress-warning" | undefined;
- TRANSITION_GROUP_ROOT?: boolean | "suppress-warning" | undefined;
- COMPONENT_ASYNC?: boolean | "suppress-warning" | undefined;
- COMPONENT_FUNCTIONAL?: boolean | "suppress-warning" | undefined;
- COMPONENT_V_MODEL?: boolean | "suppress-warning" | undefined;
- RENDER_FUNCTION?: boolean | "suppress-warning" | undefined;
- FILTERS?: boolean | "suppress-warning" | undefined;
- PRIVATE_APIS?: boolean | "suppress-warning" | undefined;
- MODE?: 2 | 3 | ((comp: _$vue.Component | null) => 2 | 3) | undefined;
- } | undefined;
- data?: ((this: any, vm: any) => any) | undefined;
- computed?: _$vue.ComputedOptions | undefined;
- methods?: _$vue.MethodOptions | undefined;
- watch?: {
- [x: string]: (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>)) | (string | _$vue.WatchCallback | ({
- handler: _$vue.WatchCallback | string;
- } & _$vue.WatchOptions<boolean>))[];
- } | undefined;
- provide?: _$vue.ComponentProvideOptions | undefined;
- inject?: {} | string[] | undefined;
- filters?: Record<string, Function> | undefined;
- mixins?: any[] | undefined;
- extends?: any;
- beforeCreate?: (() => any) | undefined;
- created?: (() => any) | undefined;
- beforeMount?: (() => any) | undefined;
- mounted?: (() => any) | undefined;
- beforeUpdate?: (() => any) | undefined;
- updated?: (() => any) | undefined;
- activated?: (() => any) | undefined;
- deactivated?: (() => any) | undefined;
- beforeDestroy?: (() => any) | undefined;
- beforeUnmount?: (() => any) | undefined;
- destroyed?: (() => any) | undefined;
- unmounted?: (() => any) | undefined;
- renderTracked?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- renderTriggered?: ((e: _$vue.DebuggerEvent) => void) | undefined;
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | undefined;
- delimiters?: [string, string] | undefined;
- __differentiator?: string | number | symbol | undefined;
- __isBuiltIn?: boolean | undefined;
- __file?: string | undefined;
- __name?: string | undefined;
- beforeRouteEnter?: (_$vue_router0.TypesConfig extends Record<"beforeRouteEnter", infer T> ? T : _$vue_router0.NavigationGuardWithThis<undefined>) | undefined;
- beforeRouteUpdate?: (_$vue_router0.TypesConfig extends Record<"beforeRouteUpdate", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- beforeRouteLeave?: (_$vue_router0.TypesConfig extends Record<"beforeRouteLeave", infer T> ? T : _$vue_router0.NavigationGuard) | undefined;
- }>;
- confirmButtonClass: _$vue.Ref<string, string>;
- confirmButtonDisabled: _$vue.Ref<boolean, boolean>;
- cancelButtonClass: _$vue.Ref<string, string>;
- editorErrorMessage: _$vue.Ref<string, string>;
- beforeClose: _$vue.Ref<((action: Action, instance: MessageBoxState, done: () => void) => void) | null, ((action: Action, instance: MessageBoxState, done: () => void) => void) | null>;
- callback: _$vue.Ref<Callback | null, Callback | null>;
- distinguishCancelAndClose: _$vue.Ref<boolean, boolean>;
- modalFade: _$vue.Ref<boolean, boolean>;
- modalClass: _$vue.Ref<string, string>;
- validateError: _$vue.Ref<boolean, boolean>;
- zIndex: _$vue.Ref<number, number>;
- }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, ("action" | "vanish")[], "action" | "vanish", _$vue.PublicProps, Readonly<_$vue.ExtractPropTypes<{
- buttonSize: {
- type: PropType<ComponentSize>;
- validator: (val: string) => val is ComponentSize | "";
- };
- modal: {
- type: BooleanConstructor;
- default: boolean;
- };
- lockScroll: {
- type: BooleanConstructor;
- default: boolean;
- };
- showClose: {
- type: BooleanConstructor;
- default: boolean;
- };
- closeOnClickModal: {
- type: BooleanConstructor;
- default: boolean;
- };
- closeOnPressEscape: {
- type: BooleanConstructor;
- default: boolean;
- };
- closeOnHashChange: {
- type: BooleanConstructor;
- default: boolean;
- };
- center: BooleanConstructor;
- draggable: BooleanConstructor;
- overflow: BooleanConstructor;
- roundButton: BooleanConstructor;
- container: {
- type: StringConstructor;
- default: string;
- };
- boxType: {
- type: PropType<MessageBoxType>;
- default: string;
- };
- }>> & Readonly<{
- onAction?: ((...args: any[]) => any) | undefined;
- onVanish?: ((...args: any[]) => any) | undefined;
- }>, {
- center: boolean;
- container: string;
- overflow: boolean;
- closeOnClickModal: boolean;
- closeOnPressEscape: boolean;
- lockScroll: boolean;
- modal: boolean;
- draggable: boolean;
- showClose: boolean;
- roundButton: boolean;
- closeOnHashChange: boolean;
- boxType: MessageBoxType;
- }, {}, {
- Close: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- SuccessFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- InfoFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- WarningFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- CircleCloseFilled: _$vue.DefineComponent<{}, void, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, string, _$vue.PublicProps, Readonly<{}>, {}, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- ElButton: {
- new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<ButtonProps> & Readonly<{
- onClick?: ((evt: MouseEvent) => any) | undefined;
- }>, {
- ref: _$vue.Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
- size: _$vue.ComputedRef<"" | "default" | "small" | "large">;
- type: _$vue.ComputedRef<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
- disabled: _$vue.ComputedRef<boolean>;
- shouldAddSpace: _$vue.ComputedRef<boolean>;
- }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
- click: (evt: MouseEvent) => void;
- }, _$vue.PublicProps, {
- text: boolean;
- disabled: boolean;
- type: ButtonType;
- round: boolean;
- dashed: boolean;
- nativeType: ButtonNativeType;
- loadingIcon: IconPropType;
- plain: boolean;
- autoInsertSpace: boolean;
- tag: string | _$vue.Component;
- }, false, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
- P: {};
- B: {};
- D: {};
- C: {};
- M: {};
- Defaults: {};
- }, Readonly<ButtonProps> & Readonly<{
- onClick?: ((evt: MouseEvent) => any) | undefined;
- }>, {
- ref: _$vue.Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
- size: _$vue.ComputedRef<"" | "default" | "small" | "large">;
- type: _$vue.ComputedRef<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
- disabled: _$vue.ComputedRef<boolean>;
- shouldAddSpace: _$vue.ComputedRef<boolean>;
- }, {}, {}, {}, {
- text: boolean;
- disabled: boolean;
- type: ButtonType;
- round: boolean;
- dashed: boolean;
- nativeType: ButtonNativeType;
- loadingIcon: IconPropType;
- plain: boolean;
- autoInsertSpace: boolean;
- tag: string | _$vue.Component;
- }>;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } & _$vue.ComponentOptionsBase<Readonly<ButtonProps> & Readonly<{
- onClick?: ((evt: MouseEvent) => any) | undefined;
- }>, {
- ref: _$vue.Ref<HTMLButtonElement | undefined, HTMLButtonElement | undefined>;
- size: _$vue.ComputedRef<"" | "default" | "small" | "large">;
- type: _$vue.ComputedRef<"" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger">;
- disabled: _$vue.ComputedRef<boolean>;
- shouldAddSpace: _$vue.ComputedRef<boolean>;
- }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
- click: (evt: MouseEvent) => void;
- }, string, {
- text: boolean;
- disabled: boolean;
- type: ButtonType;
- round: boolean;
- dashed: boolean;
- nativeType: ButtonNativeType;
- loadingIcon: IconPropType;
- plain: boolean;
- autoInsertSpace: boolean;
- tag: string | _$vue.Component;
- }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
- $slots: {
- loading?: (props: {}) => any;
- } & {
- icon?: (props: {}) => any;
- } & {
- default?: (props: {}) => any;
- };
- }) & _$vue.ObjectPlugin & {
- setPropsDefaults: (defaults: {
- readonly size?: "" | "default" | "small" | "large" | (() => "" | "default" | "small" | "large") | undefined;
- readonly disabled?: boolean | (() => boolean) | undefined;
- readonly type?: "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger" | (() => "" | "text" | "default" | "info" | "primary" | "success" | "warning" | "danger") | undefined;
- readonly icon?: string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | (() => (IconPropType | undefined) & {}) | undefined;
- readonly nativeType?: "button" | "reset" | "submit" | (() => "button" | "reset" | "submit") | undefined;
- readonly loading?: boolean | (() => boolean) | undefined;
- readonly loadingIcon?: string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | (() => (IconPropType | undefined) & {}) | undefined;
- readonly plain?: boolean | (() => boolean) | undefined;
- readonly text?: boolean | (() => boolean) | undefined;
- readonly link?: boolean | (() => boolean) | undefined;
- readonly bg?: boolean | (() => boolean) | undefined;
- readonly autofocus?: boolean | (() => boolean) | undefined;
- readonly round?: boolean | (() => boolean) | undefined;
- readonly circle?: boolean | (() => boolean) | undefined;
- readonly dashed?: boolean | (() => boolean) | undefined;
- readonly color?: string | (() => string) | undefined;
- readonly dark?: boolean | (() => boolean) | undefined;
- readonly autoInsertSpace?: boolean | (() => boolean) | undefined;
- readonly tag?: string | _$vue.FunctionalComponent<any, {}, any, {}> | {
- new (...args: any[]): any;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } | (() => (string | _$vue.Component | undefined) & {}) | undefined;
- }) => void;
- } & {
- ButtonGroup: typeof _default$1;
- };
- ElFocusTrap: _$vue.DefineComponent<_$vue.ExtractPropTypes<{
- loop: BooleanConstructor;
- trapped: BooleanConstructor;
- focusTrapEl: PropType<HTMLElement>;
- focusStartEl: {
- type: PropType<"container" | "first" | HTMLElement>;
- default: string;
- };
- }>, {
- onKeydown: (e: KeyboardEvent) => void;
- }, {}, {}, {}, _$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<{
- loop: BooleanConstructor;
- trapped: BooleanConstructor;
- focusTrapEl: PropType<HTMLElement>;
- focusStartEl: {
- type: PropType<"container" | "first" | HTMLElement>;
- default: string;
- };
- }>> & Readonly<{
- onFocusin?: ((...args: any[]) => any) | undefined;
- onFocusout?: ((...args: any[]) => any) | undefined;
- onFocusAfterTrapped?: ((...args: any[]) => any) | undefined;
- onFocusAfterReleased?: ((...args: any[]) => any) | undefined;
- "onFocusout-prevented"?: ((...args: any[]) => any) | undefined;
- "onRelease-requested"?: ((...args: any[]) => any) | undefined;
- }>, {
- loop: boolean;
- trapped: boolean;
- focusStartEl: HTMLElement | "first" | "container";
- }, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- ElInput: SFCWithInstall<{
- new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<InputProps> & Readonly<{
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
- onInput?: ((value: string) => any) | undefined;
- onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
- onFocus?: ((evt: FocusEvent) => any) | undefined;
- onBlur?: ((evt: FocusEvent) => any) | undefined;
- onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
- }>, {
- input: _$vue.ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
- textarea: _$vue.ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
- ref: _$vue.ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
- textareaStyle: _$vue.ComputedRef<_$vue.StyleValue>;
- autosize: _$vue.Ref<InputAutoSize | undefined, InputAutoSize | undefined>;
- isComposing: _$vue.Ref<boolean, boolean>;
- passwordVisible: _$vue.Ref<boolean, boolean>;
- focus: () => void | undefined;
- blur: () => void | undefined;
- select: () => void;
- clear: (evt?: MouseEvent) => void;
- resizeTextarea: () => void;
- }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
- "update:modelValue": (value: string) => void;
- input: (value: string) => void;
- change: (value: string, evt?: Event | undefined) => void;
- focus: (evt: FocusEvent) => void;
- blur: (evt: FocusEvent) => void;
- clear: (evt: MouseEvent | undefined) => void;
- mouseleave: (evt: MouseEvent) => void;
- mouseenter: (evt: MouseEvent) => void;
- keydown: (evt: Event | KeyboardEvent) => void;
- compositionstart: (evt: CompositionEvent) => void;
- compositionupdate: (evt: CompositionEvent) => void;
- compositionend: (evt: CompositionEvent) => void;
- }, _$vue.PublicProps, {
- disabled: boolean;
- modelValue: string | number | null;
- modelModifiers: InputModelModifiers;
- type: InputType;
- autocomplete: string;
- clearIcon: IconPropType;
- wordLimitPosition: "inside" | "outside";
- tabindex: string | number;
- validateEvent: boolean;
- inputStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
- rows: number;
- }, false, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
- P: {};
- B: {};
- D: {};
- C: {};
- M: {};
- Defaults: {};
- }, Readonly<InputProps> & Readonly<{
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
- onInput?: ((value: string) => any) | undefined;
- onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
- onFocus?: ((evt: FocusEvent) => any) | undefined;
- onBlur?: ((evt: FocusEvent) => any) | undefined;
- onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
- }>, {
- input: _$vue.ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
- textarea: _$vue.ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
- ref: _$vue.ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
- textareaStyle: _$vue.ComputedRef<_$vue.StyleValue>;
- autosize: _$vue.Ref<InputAutoSize | undefined, InputAutoSize | undefined>;
- isComposing: _$vue.Ref<boolean, boolean>;
- passwordVisible: _$vue.Ref<boolean, boolean>;
- focus: () => void | undefined;
- blur: () => void | undefined;
- select: () => void;
- clear: (evt?: MouseEvent) => void;
- resizeTextarea: () => void;
- }, {}, {}, {}, {
- disabled: boolean;
- modelValue: string | number | null;
- modelModifiers: InputModelModifiers;
- type: InputType;
- autocomplete: string;
- clearIcon: IconPropType;
- wordLimitPosition: "inside" | "outside";
- tabindex: string | number;
- validateEvent: boolean;
- inputStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
- rows: number;
- }>;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } & _$vue.ComponentOptionsBase<Readonly<InputProps> & Readonly<{
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
- onInput?: ((value: string) => any) | undefined;
- onChange?: ((value: string, evt?: Event | undefined) => any) | undefined;
- onFocus?: ((evt: FocusEvent) => any) | undefined;
- onBlur?: ((evt: FocusEvent) => any) | undefined;
- onClear?: ((evt: MouseEvent | undefined) => any) | undefined;
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
- }>, {
- input: _$vue.ShallowRef<HTMLInputElement | undefined, HTMLInputElement | undefined>;
- textarea: _$vue.ShallowRef<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
- ref: _$vue.ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
- textareaStyle: _$vue.ComputedRef<_$vue.StyleValue>;
- autosize: _$vue.Ref<InputAutoSize | undefined, InputAutoSize | undefined>;
- isComposing: _$vue.Ref<boolean, boolean>;
- passwordVisible: _$vue.Ref<boolean, boolean>;
- focus: () => void | undefined;
- blur: () => void | undefined;
- select: () => void;
- clear: (evt?: MouseEvent) => void;
- resizeTextarea: () => void;
- }, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
- "update:modelValue": (value: string) => void;
- input: (value: string) => void;
- change: (value: string, evt?: Event | undefined) => void;
- focus: (evt: FocusEvent) => void;
- blur: (evt: FocusEvent) => void;
- clear: (evt: MouseEvent | undefined) => void;
- mouseleave: (evt: MouseEvent) => void;
- mouseenter: (evt: MouseEvent) => void;
- keydown: (evt: Event | KeyboardEvent) => void;
- compositionstart: (evt: CompositionEvent) => void;
- compositionupdate: (evt: CompositionEvent) => void;
- compositionend: (evt: CompositionEvent) => void;
- }, string, {
- disabled: boolean;
- modelValue: string | number | null;
- modelModifiers: InputModelModifiers;
- type: InputType;
- autocomplete: string;
- clearIcon: IconPropType;
- wordLimitPosition: "inside" | "outside";
- tabindex: string | number;
- validateEvent: boolean;
- inputStyle: string | false | _$vue.CSSProperties | _$vue.StyleValue[] | null;
- rows: number;
- }, {}, string, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, _$vue.ComponentProvideOptions> & _$vue.VNodeProps & _$vue.AllowedComponentProps & _$vue.ComponentCustomProps & (new () => {
- $slots: {
- prepend?: (props: {}) => any;
- } & {
- prefix?: (props: {}) => any;
- } & {
- suffix?: (props: {}) => any;
- } & {
- 'password-icon'?: (props: {
- visible: boolean;
- }) => any;
- } & {
- append?: (props: {}) => any;
- };
- })>;
- ElOverlay: _$vue.DefineComponent<_$vue.ExtractPropTypes<{
- readonly mask: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
- readonly customMaskEvent: BooleanConstructor;
- readonly overlayClass: {
- 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>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- readonly zIndex: {
- 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>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- }>, () => _$vue.VNode<_$vue.RendererNode, _$vue.RendererElement, {
- [key: string]: any;
- }>, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {
- click: (evt: MouseEvent) => boolean;
- }, string, _$vue.PublicProps, Readonly<_$vue.ExtractPropTypes<{
- readonly mask: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
- readonly customMaskEvent: BooleanConstructor;
- readonly overlayClass: {
- 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>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- readonly zIndex: {
- 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>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- }>> & Readonly<{
- onClick?: ((evt: MouseEvent) => any) | undefined;
- }>, {
- readonly mask: EpPropMergeType<BooleanConstructor, unknown, unknown>;
- readonly customMaskEvent: boolean;
- }, {}, {}, {}, string, _$vue.ComponentProvideOptions, true, {}, any>;
- ElIcon: SFCWithInstall<{
- new (...args: any[]): _$vue.CreateComponentPublicInstanceWithMixins<Readonly<IconProps> & Readonly<{}>, {}, {}, {}, {}, _$vue.ComponentOptionsMixin, _$vue.ComponentOptionsMixin, {}, _$vue.PublicProps, {}, false, {}, {}, _$vue.GlobalComponents, _$vue.GlobalDirectives, string, {}, any, _$vue.ComponentProvideOptions, {
- P: {};
- B: {};
- D: {};
- C: {};
- M: {};
- Defaults: {};
- }, Readonly<IconProps> & Readonly<{}>, {}, {}, {}, {}, {}>;
- __isFragment?: never;
- __isTeleport?: never;
- __isSuspense?: never;
- } & _$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 () => {
- $slots: {
- default?: (props: {}) => any;
- };
- })>;
- }, {
- TrapFocus: _$vue.ObjectDirective<any, any, string, any>;
- }, string, _$vue.ComponentProvideOptions, true, {}, any>;
- //#endregion
- export { _default as default };
|