export declare const booleanConverter: { fromAttribute: (value: string | null) => boolean; toAttribute: (value: boolean) => string | null; }; export declare const stringConverter: { fromAttribute: (value: string | null) => string; toAttribute: (value: string) => string | null; };