UNPKG

@payfit/unity-components

Version:

19 lines (18 loc) 639 B
import { PropsWithChildren } from 'react'; interface FunnelLayoutContextValue { ids: { topbarId: string; asideId: string; mainContentId: string; funnelTitleId: string; funnelDescriptionId: string; funnelStatusId: string; footerId: string; }; } export declare const useFunnelLayoutContext: () => FunnelLayoutContextValue; interface FunnelLayoutProviderProps extends PropsWithChildren { ids: FunnelLayoutContextValue['ids']; } export declare const FunnelLayoutProvider: ({ children, ids, }: FunnelLayoutProviderProps) => import("react/jsx-runtime").JSX.Element; export {};