///
import { LogicalProps } from '../utils/logical-properties';
import { MQ } from '../utils/style';
export interface BylineData {
author: string;
href?: string;
title?: string;
location?: string;
ariaLabel?: string;
key?: string | number;
}
export interface BylineProps extends React.HTMLAttributes {
bylineData: BylineData[];
overrides?: {
stylePreset?: MQ;
typographyPreset?: MQ;
spaceStack?: MQ;
link?: {
stylePreset?: MQ;
typographyPreset?: MQ;
};
divider?: {
stylePreset?: MQ;
spaceInline?: MQ;
};
} & LogicalProps;
}
//# sourceMappingURL=types.d.ts.map