;
};
export {};
}
export declare namespace PolymorphicAs {
type ComponentPropsWithRef = P & Omit, keyof P>;
type ComponentPropsWithoutRef = P & Omit, keyof P>;
interface ComponentWithForwardedRef {
(props: {
as: C;
} & ComponentPropsWithRef): JSX.Element;
(props: ComponentPropsWithRef
): JSX.Element;
displayName?: string;
}
}
export {};