interface AdditionalAttributes {
    style: string;
    [key: `data${string}`]: string;
}
export type PartialElementWithAdditionalAttributes<Element> = Partial<Omit<Element, 'style'> & AdditionalAttributes>;
export {};
