import { BaseObject } from 'styled-components/dist/types'; import { Component } from 'react'; import { CSSObject } from 'styled-components'; import { default as default_2 } from 'react'; import { DefaultTheme } from 'styled-components'; import { DetailedHTMLProps } from 'react'; import { DragEvent as DragEvent_2 } from 'react'; import { DragEventHandler } from 'react'; import { FastOmit } from 'styled-components'; import { FC } from 'react'; import { HTMLAttributes } from 'react'; import { IStyledComponentBase } from 'styled-components/dist/types'; import { JSX } from 'react/jsx-runtime'; import { PropsWithChildren } from 'react'; import { ReactNode } from 'react'; import { Ref } from 'react'; import { Substitute } from 'styled-components/dist/types'; export declare const Accordion: FC; export declare const AccordionDetails: IStyledComponentBase<"web", Substitute, HTMLDivElement>, AddDollarSign>>> & string; export declare type AccordionDetailsProps = AddDollarSign_2>; export declare interface AccordionProps { accordionDetails: ReactNode; accordionSummary: ReactNode; expanded: boolean; wrapperProps: StackProps; isAccordionIcon?: boolean; onClickIcon?: () => void; onClickSummary?: () => void; triggerUpdate?: unknown[]; } export declare const AccordionStyledIcon: IStyledComponentBase<"web", Substitute>>> & string & Omit<(props: IconItemProps) => JSX.Element, keyof Component>; export declare type AccordionStyledIconProps = AddDollarSign_2>; export declare const AccordionSummary: IStyledComponentBase<"web", FastOmit, HTMLDivElement>, never>> & string; export declare const AccordionSummaryContent: IStyledComponentBase<"web", Substitute, HTMLDivElement>, AddDollarSign>>> & string; export declare type AccordionSummaryContentProps = AddDollarSign_2>; export declare const AccordionWrapper: IStyledComponentBase<"web", FastOmit, HTMLDivElement>, never>> & string; declare type AddDollarSign = { [K in keyof T as `$${string & K}`]: T[K]; }; declare type AddDollarSign_2 = { [K in keyof T as `$${string & K}`]: T[K]; }; declare interface addSXProps { sx?: SXProps; } declare type IconItemProps = { [K in keyof DefaultTheme['icon']['map']]: { type: K; name: DefaultTheme['icon']['map'][K][number]; className?: string; onClick?: (event: default_2.MouseEvent) => void; size: IThemeSize | '100%'; color?: IThemePaletteKeys; turn?: number; order?: number; tabIndex?: number; } & addSXProps; }[keyof DefaultTheme['icon']['map']]; declare type IThemeDevice = 'default' | 'tablet' | 'mobile'; declare type IThemePaletteKeys = 'transparent' | 'black100' | 'black80' | 'black60' | 'black50' | 'black40' | 'black10' | 'black05' | 'black04' | 'blackHelena' | 'blackJanice' | 'grayJanice' | 'grayKaren' | 'grayMonica' | 'graySandra' | 'grayPatricia' | 'graySarah' | 'grayStassie' | 'grayAdriana' | 'greenGoogle' | 'grayBarbara' | 'grayStephanie' | 'grayFrances' | 'grayTina' | 'green100' | 'green50' | 'green25' | 'green10' | 'green10Background' | 'whiteStandard' | 'whiteJanice' | 'yellowGoogle' | 'yellow100' | 'yellow50' | 'yellow25' | 'yellow10' | 'yellow10Background' | 'redGoogle' | 'red100' | 'red50' | 'red25' | 'red10' | 'red10Background' | 'blueGoogle' | 'blueRest' | 'blueActive' | 'blueHover' | 'blueFocus' | 'blueBr' | 'blueKaren' | 'blueMonica' | 'violetStephanie' | 'violetJanice' | 'amnezia' | 'inherit' | 'currentColor'; declare type IThemeSize = 'large' | 'largeMedium' | 'medium' | 'mediumSmall' | 'small'; declare interface StackProps extends addSXProps, PropsWithChildren { className?: string; isHover?: boolean; isRipple?: boolean; onClick?: () => void; onDragOver?: DragEventHandler; onDrop?: (e: DragEvent_2) => void; ref?: Ref; } declare type SXProps = ({ default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }) | ((theme: DefaultTheme) => { default: CSSObject; } & { [K in IThemeDevice]?: CSSObject; }); export { }