import type { DSTabPanelElement } from '@digdir/designsystemet-web'; import type { HTMLAttributes } from 'react'; import '@digdir/designsystemet-web'; export type TabsPanelProps = { /** * When this value is selected as the current state, render this `TabsPanel` component. * Must match the `value` of a `Tabs.Tab` component. */ value: string; } & Omit, 'value'>; /** * A single content item in a Tabs component. * * @example * content 1 */ export declare const TabsPanel: import("react").ForwardRefExoticComponent<{ /** * When this value is selected as the current state, render this `TabsPanel` component. * Must match the `value` of a `Tabs.Tab` component. */ value: string; } & Omit, "value"> & import("react").RefAttributes>; //# sourceMappingURL=tabs-panel.d.ts.map