import type { JSX, PropsWithChildren } from 'react';
export declare const PorscheDesignSystemContext: import("react").Context<{
    prefix?: string;
}>;
type Props = {
    prefix?: string;
    cdn?: 'auto' | 'cn';
};
export declare const PorscheDesignSystemProvider: ({ prefix, cdn, ...props }: PropsWithChildren<Props>) => JSX.Element;
export {};
