9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
|
|
import React from 'react';
|
||
|
|
|
||
|
|
export interface CastingProps {
|
||
|
|
fill?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
declare const CastingComponent: React.FC<CastingProps>;
|
||
|
|
|
||
|
|
export default CastingComponent;
|