import type { GlobalAttributesT } from '@elliemae/ds-props-helpers'; interface StyledPanelContainerPropsT { hide: boolean; isDSMobile: boolean; } export interface PanelDescriptor extends Record { index: number; tabId: string; isActive: boolean; isDSMobile: boolean; content: React.ReactNode; style: React.CSSProperties; tabPanelsProps?: GlobalAttributesT; 'aria-hidden': boolean; 'data-panel-id': string; 'data-testid': string; hide: boolean; onClick: (event: React.MouseEvent) => void; role: 'tabpanel'; } export declare const StyledPanelContainer: import("styled-components").StyledComponent<"div", import("@elliemae/ds-system").Theme, StyledPanelContainerPropsT & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<"div">, never>; export declare const StyledDSSwipeCard: import("styled-components").StyledComponent<{ (props: import("@elliemae/ds-swipe-card").DSSwipeCardT.Props): import("react/jsx-runtime.js").JSX.Element; displayName: string; }, import("@elliemae/ds-system").Theme, object & import("@elliemae/ds-system").OwnerInterface & import("@elliemae/ds-system").InnerRefInterface<{ (props: import("@elliemae/ds-swipe-card").DSSwipeCardT.Props): import("react/jsx-runtime.js").JSX.Element; displayName: string; }>, never>; export {};